Skip to content
Closed
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
67 changes: 36 additions & 31 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Wireframe</h1>
<p>
This is the default, provided code and no changes have been made yet.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
</p>
<a href="">Read more</a>
</article>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
</footer>
</body>
</html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wireframe</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header>
<h1>Wireframe</h1>
<p>A page explaining README files, Wireframes, and Git branches</p>
</header>
<main>
<article>
<h2>What is a README file?</h2>
<p>A README file explains what a project is about and how to use it.</p>
<a href="https://docs.github.com/en/repositories">Read more</a>
</article>
<article>
<h2>What is a Wireframe?</h2>
<p>A wireframe is a simple diagram showing the skeleton of a website.</p>
<a href="https://www.productplan.com/glossary/wireframe/">Read more</a>
</article>
<article>
<h2>What is a Branch in Git?</h2>
<p>A branch is a separate line of development in a Git repository.</p>
<a href="https://docs.github.com/en/pull-requests">Read more</a>
</article>
</main>
<footer>
<p>Footers usually contain contact links and other information about the site overall.</p>
</footer>
</body>

</html>
Loading