-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (67 loc) · 3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title> Jessica's Website </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--all contents here-->
<div id="all-contents">
<nav>
<h1 class="name"> Jessica's 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">
<!---might replace image later on (if I ever find one of me)-->
<img class="sidebar-img" src =https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRkeSRZJjqF72ft_GRCEkIfE6BkwwbBq53Q77i-Pxu_6Ht0ZSC5>
</div>
<!--content section-->
<div class="content">
<h2> Jessica Galicia-Hernandez </h2>
<p> Student at Patrick F. Taylor - GO TIGERS!! </p>
<!--interests section-->
<div id="interests">
<h3> Interests </h3>
<ul>
<li> History </li>
<li> Animation </li>
<li> Biology </li>
</ul>
</div>
<!---More info about me ig-->
<div class="info">
<h4> More About Me </h4>
<div id="hobbies">
<h5> Hobbies </h5>
<ul>
<li> Hiking </li>
<li> Knitting/Crochet </li>
<li> Baking </li>
<li> Reading </li>
</ul>
</div>
<img class="middleimg" src =https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTUJ-laS_MfLiQIIkbwqdIATC9_G0p07zWBaw&s>
<div id="fav">
<h6> Favorite Things</h6>
<ul>
<li> Color: Blue </li>
<li> Show: ATLA </li>
<li> Food: Pizza </li>
<li> Animal: Bunnies </li>
</ul>
</div> <!--id="fav"-->
</div> <!--class="info"-->
</div> <!--class="content"-->
</main>
</div>
</body>
</html>