-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (85 loc) · 3.98 KB
/
Copy pathabout.html
File metadata and controls
92 lines (85 loc) · 3.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<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>About Me | Page Abdusamadzoda Abdulaziz</title>
</head>
<body>
<!-- HEADER SECTION START -->
<header class="header">
<div class="header--logo">
<label for="close"><i onclick="overlay()" class="fas fa-bars sil"></i></label>
<h3>Abdusamadzoda <span>Abdulaziz</span> </h>
</div>
<div class="header--logo--links">
<a href="https://github.com/abdulazizcode"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/abdusamadzoda-abdulaziz/"><i class="fab fa-linkedin"></i></a>
<a href="mailto:abdulaziz.abdurasul1999@gmail.com"><i class="fas fa-envelope-square"></i></a>
</div>
</header>
<!-- HEADER SECTION END -->
<!-- ABOUT SECTION START -->
<main class="about">
<div class="about__header">
<h4>About Me</h4>
<h5>Welcome to my Website</h5>
</div>
<div class="about__contents">
<div class="content">
<p class="content__desc">
Self taught Web Developer
Wich have always found coding intuitive and have pushed myself to learn the most effective ways to achieve a result.
Skilled at writing well-designed responsive webs, testable and efficient code using current best practices in Web development.
Fast learner hard worker and team player who is proficient in an array of scripting languages and tools and can quickly integrate into a team so I can provide value to the company and customers.
For this reason I am looking for a company willing to offer me a placement among their developers.In return would offer my full commitment, and be a pleasant and friendly addition to you team.
I am therefore currently looking for a job or an internship as a front-end developer.
</p>
</div>
</div>
</main>
<!-- ABOUT SECTION END -->
<!-- FOOTER SECTION START -->
<footer class="footer">
<div class="footer__copy">© Copyright 2021 Abdulaziz |</div>
<div class="footer__email">abdulaziz.abdurasul1999@gmail.com</div>
</footer>
<!-- FOOTER SECTION END -->
<!-- SIDEBAR SECTION START-->
<input type="checkbox" id="close">
<nav class="side">
<div class="side--header">
<label for="close" class="close"><i onclick="overlay()" class="fas fa-window-close"></i></label>
<div class="side--header__body">
<img src="./img/profile-img.jpg" alt="Abdulaziz">
<div class="side--body__info">
<h3>Abdusamadzoda Abdulaziz</h3>
<p>Front-End Developer</p>
</div>
</div>
</div>
<div class="side--footer">
<ul class="side--navigation">
<li>
<a href="index.html"><i class="fas fa-home"></i>Home</a>
</li>
<li>
<a href="about.html"><i class="fas fa-book"></i>About</a>
</li>
<li>
<a href="projects.html"><i class="fas fa-briefcase"></i>Projects</a>
</li>
<li>
<a href="contact.html"><i class="fas fa-envelope-square"></i>Contacts</a>
</li>
<li>
<a href="./vendors/resume.pdf"><i class="far fa-file-pdf"></i>Resume</a>
</li>
</ul>
</div>
</nav>
<!-- SIDEBAR SECTION END -->
<script src="js/main.js"></script>
</body>
</html>