1
0
Fork 0
WEBD-125-40/week-07/html/about.html

74 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- The head element contains machine-readable elements -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page Title tag-->
<title>About</title>
<!-- Link tag to stylesheet -->
<link href="../css/styles.css" rel="stylesheet" type="text/css">
<!-- Links to Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Primary Font Cabin Sketch Bold 700 -->
<!-- Secondary Architects Daughter Regular 400 -->
<!-- Typography Font Raleway Regular 400 -->
<link href="https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@700&family=Cinzel+Decorative:wght@700&family=Raleway&display=swap" rel="stylesheet">
</head>
<body>
<!-- All content goes in the body element -->
<!-- Header element -->
<header>
<h1>About</h1>
<!-- Nav tag -->
<nav>
<!-- Unordered list tag -->
<ul class="navContainer">
<!-- list item tag -->
<li class="navItem">
<!-- a tag to create a link (empty for now) -->
<a href="../html/index.html">HOME</a>
</li>
<li class="navItem active">
<a href="#">ABOUT</a>
</li>
<li class="navItem">
<a href="../html/examples.html">EXAMPLES</a>
</li>
<li class="navItem">
<a href="../html/contact.html">CONTACT</a>
</li>
</ul>
</nav>
</header>
<!-- Main element -->
<main>
<!-- Article element -->
<!-- class home_article is set to background color lightgray and padding 10px -->
<article id="left" class="home_article">
<!-- Header 2 tag -->
<h2>First Header</h2>
<!-- Paragraph tag -->
<p class="piet">Maecenas quis odio sit <span class="kyk">amet ipsum maximus</span> egestas. Maecenas gravida magna vehicula quam pulvinar varius.
Vestibulum venenatis quam enim, a eleifend tortor blandit non. </p>
</article>
<article id="right" class="home_article">
<!-- Header 2 tag -->
<h2>Second Header</h2>
<!-- Paragraph tag -->
<p class="piet">Maecenas quis odio sit amet ipsum maximus egestas. Maecenas gravida magna vehicula quam pulvinar varius.
Vestibulum venenatis quam enim, a eleifend tortor blandit non. </p>
</article>
</main>
<!-- Footer element -->
<footer>
<!-- Paragraph tag -->
<p class="koos">Footer goes here.</p>
</footer>
</body>
</html>