-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (47 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<title>About Page | AsmrProg</title>
</head>
<body>
<nav>
<div class="logo">
<img src="assets/logo.png">
<a href="#">AsmrProg</a>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="works.html">Works</a>
<a href="single-work.html">Single Work</a>
<a href="blog.html">Blog</a>
<a class="selected" href="about.html">About</a>
</div>
</nav>
<h1 class="page-title">About</h1>
<div class="content">
<div class="container">
<img src="assets/profile-2.png">
<div class="about">
<h2>I'm Reza Mehdikhanlou</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Repudiandae natus inventore cum quam harum
velit fugiat, aperiam doloribus quos officia ipsa nihil quibusdam at enim ipsum voluptas dignissimos
et minus!</p>
<p class="email">Contact Me : [email protected]</p>
</div>
</div>
</div>
<footer>
<div class="socials">
<i class='bx bxl-facebook-square'></i>
<i class='bx bxl-instagram'></i>
<i class='bx bxl-twitter'></i>
<i class='bx bxl-linkedin-square'></i>
</div>
<p>Copyright ©2024, All rights reserved.</p>
</footer>
</body>
</html>