-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.59 KB
/
index.html
File metadata and controls
48 lines (47 loc) · 1.59 KB
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
<!DOCTYPE html>
<html>
<head>
<title>
Emma's Website
</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
</header>
<nav class = "navbar">
<h1 class ="logo">
<a href="index.html">Emma's Website</a>
</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">
₊✩‧₊˚Emma's Website˚₊✩‧₊
</h1>
<div class="about">
<div class="about-image">
<img src="dog.jpeg" alt="dog handing you a beer" width = 300 height = 300>
</div>
<div class="about-text">
<p>Hi, my name is <strong>Emma Walker</strong>.</p>
<p>I'm a freshman at <strong>Cal Poly Slo</strong> studying <em>Computer Science</em>.</p>
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
</div>
</div>
</main>
<footer class = "footer">
© 2025 Emma's Website | All Rights Reserved
</footer>
</body>
</html>