-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
47 lines (47 loc) · 2.05 KB
/
about.html
File metadata and controls
47 lines (47 loc) · 2.05 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>About</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="nav-wrapper">
<div class="left-side">
<div class="nav-link-wrapper">
<a href="index.html">Home</a>
</div>
<div class="nav-link-wrapper active-nav-link">
<a href="about.html">About</a>
</div>
</div>
<div class="right-side">
<div class="brand">
<div>Dave's Portfolio</div>
</div>
</div>
</div>
<div class="content-wrapper">
<div class="two-column-wrapper">
<div class="profile-image-wrapper">
<img src="my-image" alt="my-logo">
</div>
<div class="profile-content-wrapper">
<h1>
This page is being worked on!
</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere dignissimos, quae beatae
ab dicta doloribus culpa quisquam voluptatem rerum maiores, porro delectus itaque distinctio
mollitia error nam eos dolores assumenda lor! Text position test
</p>
</div>
</div>
</div>
</div>
</body>
<!-- <script src="app.js" async defer></script> -->
</html>