-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.78 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.78 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
48
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Page Abdusamadzoda Abdulaziz</title>
</head>
<body>
<!-- HOME SECTION START-->
<main class="home">
<div class="home__container">
<div class="home__container--profile">
<img class="profile" src="./img/profile-img.jpg" alt="Abdulaziz">
</div>
<div class="home__container--info">
<h1>Abdusamadzoda Abdulaziz</h1>
<h3>FRONT-END DEVELOPER</h3>
</div>
<div class="home__container--links">
<div class="icon">
<a href="about.html"><i class="fas fa-book colored-text"></i></a>
<span>About</span>
</div>
<div class="icon">
<a href="projects.html"><i class="fas fa-briefcase colored-text"></i></a>
<span>Portfolio</span>
</div>
<div class="icon">
<a href="contact.html"><i class="fas fa-envelope-square colored-text"></i></a>
<span>Contact</span>
</div>
<div class="icon">
<a href="./vendors/resume.pdf"><i class="fas fa-file-pdf colored-text"></i></a>
<span>Resume</span>
</div>
</div>
</div>
</main>
<!-- HOME SECTION END -->
<script src="js/main.js"></script>
</body>
</html>