-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
220 lines (208 loc) · 7.24 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!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" />
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/8c1870b6fa.js" crossorigin="anonymous"></script>
<title>Faiz-Desktop-Version</title>
</head>
<body id="body">
<!--my header section starts-->
<header>
<h2 class="my-logo"><a href="#">Faiz</a></h2>
<nav>
<div class="menu-icon">
<p
id="show-nav"
class="mob-nav-menu-butn">☰</p>
<!--my mobile-menu start -->
<div id="mobile-menu" class="mob-menu--hide">
<p id="hide-nav" class="mob-menu-close-icon"> x </p>
<ul id="mobmenu-links">
<li><a href="#my-portfolio"> Portfolio</a></li>
<li><a href="#about-me">About</a></li>
<li><a href="#contacts">Contact</a></li>
</ul>
</div>
</div>
<!-- my-mobile-menu finish -->
<ul class="navigation-bar">
<li class="nav-item"><a href="#">Portfolio</a></li>
<li class="nav-item"><a href="#">About</a></li>
<li class="nav-item"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<!-- my header section ends-->
<!--my headline section starts-->
<section class="my-headline-main">
<section class="headline-container">
<h1 class="headline-text">I'm Faiz.<br />Glad to see you!</h1>
<p class="my-headline-paragraph">
I'm a software developer! I can help you build a product , feature or
website Look through some of my work and experience! If you like what
you see and have a project you need coded, don't hestiate to contact me</p>
<h4 class="headline-connect">LET'S CONNECT</h4>
<ul class="social-icons">
<li>
<i class="fa-brands fa-twitter"></i>
</li>
<li>
<i class="fa-brands fa-linkedin-in"></i>
</li>
<li>
<i class="fa-solid fa-m"></i>
</li>
<li>
<i class="fa-brands fa-github"></i>
</li>
<li>
<i class="fa-brands fa-angellist"></i>
</li>
</ul>
</section>
</section>
<!--my headline section ends-->
<!--my Card works starts-->
<section id="works" class="works">
<ul id="works-cards" class="my-works-cards">
</ul>
<div id="popup-container"></div>
</section>
<!--my Card works ends-->
<!-- my About Section Starts Here -->
<section id ="about-me" class="about-section">
<div class="my-headline-skill-container">
<div class="my-about-headline">
<h2 class="my-heading-large">About Myself</h2>
<p class="my-headline-paragraph paragraph">
Hello I’m a software developer! I can help you build a product ,
feature or website. Look through some of my work and experience!
If you like what you see and have a project you need coded,
don’t hesitate to contact me.
</p>
<p class="headline-connect">LET'S CONNECT</p>
<div class="social-media-connect">
<ul class="social-icons">
<li>
<i class="fa-brands fa-twitter"></i>
</li>
<li>
<i class="fa-brands fa-linkedin-in"></i>
</li>
<li>
<i class="fa-solid fa-m"></i>
</li>
<li>
<i class="fa-brands fa-github"></i>
</li>
<li>
<i class="fa-brands fa-angellist"></i>
</li>
</ul>
<button >Get my resume</button>
</div>
</div>
<ul class="my-about-skills-container">
<li class="my-about-skill-container">
<div class="Languages">
Languages</p>
<i class="fa-solid fa-angle-down"></i>
</div>
</li>
<li>
<ul class="my-about-skill-body-container">
<li class="my-about-skill-body">
<img
class="javascript-icon"
src="./assets/javascript.png"
alt="javascript-icon"title="JavaScript official icon"
/>
<span class="my-about-skill-text">JavaScript</span>
</li>
<li class="my-about-skill-body">
<img
class="html-icon"
src="./assets/html.png"
alt="html-icon" title="Image title or description"
/>
<span class="my-about-skill-text"> HTML </span>
</li>
<li class="my-about-skill-body">
<img
class="css-icon"
src="./assets/css.png"title="html official language"
alt="css-icon"
/>
<span class="my-about-skill-text"> CSS </span>
</li>
</ul>
</li>
<li class="my-about-skill-container">
<div class="my-about-skill-heading">
<h4 class="my-about-heading-small">Frameworks</h4>
<i class="fa-solid fa-angle-right"></i>
</div>
</li>
<hr />
<li class="my-about-skill-container">
<div class="my-about-skill-heading">
<h4 class="my-about-heading-small">Skills</h4>
<i class="fa-solid fa-angle-right"></i>
</div>
</li>
<hr />
</li>
</ul>
</div>
</section>
<!-- my Contact Me Section Starts -->
<section id ="contacts" class="my-contact-me-form-container">
<h1 class="my-contact-me-form-heading">
Contact me
</h1>
<p class="my-contact-me-form-paragraph">
If you have an application you are interested in developing, a feature
that you need built or a project that needs coding. I'd love to help
with it
</p>
<form id="contact-form" action="https://formspree.io/f/mjvdqdaj"
method="POST" class="contact-me-form">
<input
class="contact-me-form-text-input"
required
maxlength="30"
name="name"
type="text"
placeholder="Your good name">
<input
class="contact-me-form-text-input"
pattern="[^ @]*@[^ @]*"
required
name="email"
type="email"
placeholder="Your email address"
/>
<textarea
class="contact-me-form-text-input"
required
maxlength="500"
name="message"
cols="30"
rows="9"
placeholder="Write your message here"
></textarea>
<button class="my-contact-me-form-button" type="submit">
Get In Touch
</button>
<p id="error-message" class="error-message"></p>
</form>
</section>
<!--my Contact Me Section Ends -->
<script src= "app.js"> </script>
<script src= "popup.js"> </script>
<script src= "script-contact.js"> </script>
</body>
</html>