-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
39 lines (35 loc) · 1008 Bytes
/
about.html
File metadata and controls
39 lines (35 loc) · 1008 Bytes
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
<!doctype html>
<link rel="stylesheet" href="css/style.css">
<html lang="en">
<head>
<title> About Me </title>
<style>
body{
background-image: url("images/sunsetcow.jpg");
background-repeat: no;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
</head>
<body>
<div id="mainBody">
<ul style="font-size:20px;">
<li><a href="index.html">Home</a></li>
<li><a class="active" href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<hr>
About Me
<hr>
</div>
<div class="flex-container">
</div>
<footer>
<!-- <script src="scripts/jquery-3.5.1.min.js"></script>
<script src="scripts/script.js"></script> -->
</footer>
</body>
</html>