-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Coreys First Website</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- All content goes here -->
<div id="all contents">
<nav>
<h1>Coreys Amazing Website</h1>
<ul id="nav-ul">
<li class="nav-li"><a href="index.html">Home</a></li>
<li class="nav-li"><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
<main>
<!-- Sidebar section -->
<div class="sidebar">
<img class="sidebar-img"
src="https://cdn.motor1.com/images/mgl/9o9ly/s3/2020-audi-rs7-sportback.webp"
alt=""
/>
</div>
<!-- Content section -->
<div class="content
<h2>Corey Boissiere</h2>
<p>St Augustine High School</p>
<!-- Interests section -->
</div id="interests>
<h3>Interests</h3>
<ul>
<li>Cars</li>
<li>music</li>
<li>Clothes</li>
<li>Shoes</li>
</ul>
</main>
</div>
</body>
</html>