-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<title>Ava's Personal Website</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- link the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- link the webpage's JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<header>
<h1>Ava</h1>
<a href="index.html"><img id = "homePick" class="center" src="assets/me.jpg" alt="Girl with brown braids and blue eyes. A lake is in the background."></a>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="news.html">News</a></li>
</ul>
</nav>
<main>
<h4 class = "center">Welcome to My Page!</h4>
<p id="intro" class = "center"><img id = "lake" src="assets/silver award.JPG" alt = "Girl Scout in uniform sitting on bricks by a lake.">
Hello! My name is Ava! I am a junior in high school. I am a member of my school’s Drug Free, Robotics, and Girls Who Code clubs as well as my school's National Honor Society Chapter. I play the flute in my school's band. I am also a Girl Scout and have completed my Bronze and Silver Award. I am a member of my school’s cross country and track team where I compete in the hurdles and high jump events. I have three dogs, a cat, and a rabbit that are so cute. My dogs’ names are Bo, Stella, and Snoopy. My cat’s name is Scummy and my rabbit’s name is Sugar. I have participated in many coding camps, and also taken courses at my school. Check out my portfolio to learn more!</p>
</main>
</body>
</html>