-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
40 lines (37 loc) · 1.76 KB
/
about.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
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/about.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="navbar">
<ul class="nav-links">
<li><a class="nav-link link1" href="index.html">Home</a></li>
<li><a class="nav-link link2 is-active" href="about.html">About</a></li>
<li><a class="nav-link link3" href="contact.html">Contact</a></li>
</ul>
</div>
<div class="content">
<div class="image-container">
<img src="images/felix.jpg" alt="Felix" class="my-picture">
</div>
<div class="text-container">
<h1 class="about-header">About Me</h1>
<p class="about-text">Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book. It has survived not only five centuries,
but also the leap into electronic typesetting, remaining
essentially unchanged.</p>
<a class="contact-btn" href="contact.html">Contact Me →</a>
</div>
</div>
</body>
</html>