-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (39 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
<!DOCTYPE html>
<html>
<head>
<title>Daniel Kogler's Frogsite</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="all-contents">
<nav>
<h1>Daniel's Toadhouse</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>
<li class="nav-li"><a href="studies.html">Studies</a></li>
</ul>
</nav>
<main>
<div class="sidebar">
<img
class="sidebar-img"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRIVLJ5StyEAnDTi5OR1K1oiwodmL62L0UqXA&usqp=CAU"
/>
</div>
<div class="content">
<h2>Daniel Kogler</h2>
<p>Instructor for Operation Spark</p>
<section class="interests">
<h3>Interests</h3>
<ul>
<li>Frogs</li>
<li>Games</li>
<li>Food</li>
</ul>
</section>
</div>
</main>
</div>
</body>
</html>