-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (40 loc) · 991 Bytes
/
about.html
File metadata and controls
43 lines (40 loc) · 991 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
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class = "container">
<div class="nav-wrapper">
<div class="nav-left-side">
<div class = "nav-link-wrapper">
<a href="index.html">Home</a>
</div>
<div class = "nav-link-wrapper">
<a href="about.html">About</a>
</div>
<div class = "nav-link-wrapper">
<a href = "Photos.html">Photography</a>
</div>
<div class = "nav-link-wrapper">
<a href = "login.php">Log In</a>
</div>
</div>
<!--Create class for right side of nav bar-->
<div class = "nav-right-side">
<div class = "nav-name-title">
<div>Miguel Hernandez</div>
</div>
</div>
</div>
</div>
<div class ="about-wrapper">
<div class = "about-img-wrapper" style = "background-image:url(images/about/about.jpg)"> </div>
<div class = "about-text-wrapper">
<div>About</div>
</div>
</div>
</div
</body>
</html>