forked from Pasayev04/recommended_hw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (42 loc) · 1.74 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Your Name</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header id="head">
<div class="container">
<a href="index.html" id="logo">Pashayev Cavad</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>About Me</h1>
<img width="250px" height="250px" src="./assets/image/IMG_0554.png" alt="404 not found">
<p>I am Javad Pashayev. I am 23 years old and i am from Azerbaijan. I was born on December 4, 1998 and live in Baku. I am a student of the Moscow State University of Humanities and Economics.</p>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with Me</h2>
<a href="https://github.com/"><img src="./assets/image/github-128.png" class="social" alt="Github"></a>
<a href="https://ru.linkedin.com/"><img src="./assets/image/linkedin-128.png" class="social" alt="Linkedin"></a>
<a href="https://ru.stackoverflow.com/"><img src="./assets/image/stackoverflow-128.png" class="social" alt="Stackoverflow"></a>
</div>
</section>
</div>
<footer>
<div class="container">
Copyright © 2021 Your Name
</div>
</footer>
</body>
</html>