Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 30 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,36 @@
--line: 1px solid;
}
body {
background: var(--paper);
color: var(--ink);
font: var(--font);
max-width: 1280px;
margin: 0 auto;
<header>
<h1>Wireframe to Web Code</h1>
<p>This page was built using a wireframe.</p>
</header>

<main>
<article>
<h2>What is a README file?</h2>
<p>
A README file explains what a project is about, how it works,
and how to use it.
</p>
</article>

<article>
<h2>What is a wireframe?</h2>
<p>
A wireframe is a simple visual guide that shows the layout
of a webpage before it is built.
</p>
</article>

<article>
<h2>Why wireframes are useful</h2>
<p>
Wireframes help developers plan structure and content
before writing code.
</p>
</article>
</main>
}
</style>
</head>
Expand Down
Loading