-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.45 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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Trinity's Dubious Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="all-contents">
<nav>
<h1>Trinity's Dubious 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://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR7kxJg_9x2Wo8JmCm76Ve34xB1gmndhZ-8Ew&s"/>
</div>
<!-- Content section -->
<div class="content">
<h2>Trinity</h2>
<p>Student at Thomas Jefferson High School</p>
<!--Interest section-->
<di id="interest">
<h3>Interest</h3>
<ul>
<li>Anime</li>
<li>Marching/Concert Band</li>
<li>Cooking</li>
</ul>
</div>
</div>
</main>
</div>
</body>
</html>