-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (89 loc) · 3.19 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
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
93
94
95
96
97
98
99
<!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>Hasan Ali</title>
<!-- Favicon -->
<link rel="icon" href="/images/favicon.ico" />
<!-- CSS Sheet -->
<link rel="stylesheet" href="css/styles.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- HEADER -->
<div class="top-container">
<img class="top-cloud" src="images/cloud.png" alt="cloud-img" />
<h1>I'm Hasan.</h1>
<h2>a <span class="pro">pro</span>grammer.</h2>
<img class="bottom-cloud" src="images/cloud.png" alt="cloud-img" />
<img class="mountain" src="images/mountain.png" alt="mountain-img" />
</div>
<!-- MID-SECTION -->
<!-- INTRO -->
<div class="middle-container">
<div class="profile">
<h2>Hello.</h2>
<p class="intro">
As a software engineer, I am proficient in both front-end and back-end
web development, building innovative and scalable web applications. My
motivation comes from my passion for technology, I offer value through
high-quality development, enhancing user satisfaction, and driving
business growth.
</p>
</div>
<hr />
<!-- SKILLS -->
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img class="frontend" src="images/front.png" alt="" />
<h3>Front-end</h3>
<p>
Proficient in HTML, CSS and JavaScript with experience in developing
responsive websites.
</p>
</div>
<div class="skill-row second">
<img class="backend" src="images/back.png" alt="" />
<h3>Back-end</h3>
<p>
Proficient in developing RESTful web services using Node.js and
Express. Strong knowledge of MongoDB and experience in implementing
data storage solutions. Experience in developing scalable and secure
back-end systems with clean code and clear documentation.
</p>
</div>
</div>
<hr />
<!-- CONTACT -->
<div class="contact-me">
<h2>Get In Touch</h2>
<p class="contact-me-msg">
Get in touch with me through e-mail by clicking the button below or
through LinkedIn. Also checkout some of my projects on Github.
</p>
<a class="btn" href="mailto:[email protected]">CONTACT ME</a>
</div>
</div>
<!-- FOOTER -->
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/hasan-dhaif"
>LinkedIn</a
>
<a
class="footer-link"
href="https://github.com/HASANALI117?tab=repositories"
>Github</a
>
<p class="copyright">© 2023 Hasan Dhaif.</p>
</div>
</body>
</html>