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
12 changes: 11 additions & 1 deletion schnittger/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ella Schnittger</title>
<!-- Be sure to add some more meta tags here. -->
</head>
<!-- Missing opening tag for the body here -->
<!--
INDENTATION: Mind your indentation throughout. This is a big issue, as is. Note how it makes it difficult to spot what elements are cotnaining what, or are missing, such as the opening body tag.
-->
<header>
<h1>Ella Schnittger</h1>
</header>
<main>
<section>
<!-- Don't include open spaces within tags like this h2 below. Check how such whitespace is rendered by opening up your page. -->
<h2> Description </h2>

</section>
Expand All @@ -25,6 +31,10 @@ <h2> Portfolio </h2>
</section>
<section>
<h2> Resume </h2>
<!-- Check out this example about how to format a paragraph in HTML. Also, don't sleep on the lorem ipsum. -->
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Consequuntur repudiandae laboriosam itaque dolore voluptatibus quasi qui asperiores ullam, quis, omnis culpa fugiat rem numquam ipsum exercitationem necessitatibus, neque corporis eveniet.
</p>
<p> Resume Item 1</p>
<p> Resume Item 2</p>
<p> Resume Item 3</p>
Expand All @@ -33,4 +43,4 @@ <h2> Resume </h2>

</main>
</body>
</html>◊
</html><!--Note this weird character here at the end. -->