-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
170 lines (154 loc) · 6.21 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="style.css">
<title>Portfolio</title>
</head>
<body>
<!-- Header Section -->
<header>
<div class="logo">
<h2>Haseeb <span class="changing">Rehman</span></h2>
</div>
<nav class="main-btn">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Home Section -->
<section class="home" id="home">
<div class="home-div">
<!-- <div class="image"> -->
<!-- </div> -->
<div class="home-text">
<img src="home-bg.png" alt="">
<h2>Hello, <br> <span>_________</span></h2>
<p>I'm Haseeb <span>[From Pakistan]</span><br> a
Junior Web Developer &<br> C# Desktop Developer </p>
<button>CV</button>
</div>
<div class="image">
<img src="prof-2.jpeg" alt="">
</div>
</div>
</section>
<!-- About section -->
<section class="about" id="about">
<div class="about-div">
<div class="about-img">
<img src="ab-prof-1.jpeg" alt="">
</div>
<h1>ABOUT </h1>
<div class="about-text">
<h2>Haseeb Rehman</h2>
<p>I'm a student of COMSATS UNIVERSITY ISLAMABAD,
<br> currently i'm learing at
<a href="https://www.thedevnation.com/home" target="_blank">DevNation</a>
<br> I'm 21 y/o beloging from <strong>Attock</strong></p>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="skills" id="skills">
<div class="skills-div">
<div class="myskills">
<h1> Skills</h1>
</div>
<div class="general">
<img src="python.png" alt="">
<h2>Python</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quos ullam quasi ex mollitia. Praesentium
excepturi laudantium necessitatibus quo blanditiis</p>
</div>
<div class="general">
<img src="c-sharp.png" alt="">
<h2>C Sharp</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quos ullam quasi ex mollitia. Praesentium
excepturi laudantium necessitatibus quo blanditiis</p>
</div>
<div class="general">
<img src="html.png" alt="">
<h2> HTML</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quos ullam quasi ex mollitia. Praesentium
excepturi laudantium necessitatibus quo blanditiis</p>
</div>
<div class="general">
<img src="css.png" alt="">
<h2>CSS</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quos ullam quasi ex mollitia. Praesentium
excepturi laudantium necessitatibus quo blanditiis</p>
</div>
</div>
</section>
<!-- Contact section -->
<section class="contact" id="contact">
<div class="contact-div">
<div class="innercontact">
<div class="heading">
get in <span>touch</span> <br> ..______..
</div>
<div class="personal-contact">
<p>Name: Haseeb Rehman</p>
<p>Address: Hazro, Attock</p>
<p>Ph: 00923005165095</p>
<p>Email: [email protected]</p>
</div>
<div class="social-icon">
<ul>
<li><a href="https://wa.link/f3cvyb"><i class="fab fa-whatsapp" target="_blank"></i></a></li>
<li><a href="https://web.facebook.com/profile.php?id=100037002912361" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li><a href="https://www.instagram.com/we_alri8/"><i class="fab fa-instagram" target="_blank"></i></a></li>
<li><a href="https://www.linkedin.com/in/haseeb-ur-rehman-82a000188/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/hrhm47"><i class="fab fa-github" target="_blank"></i></a></li>
</ul>
</div>
</div>
<div class="cheading">
CONTACT ME
</div>
<div class="project">
if you have any idea or project<br> connect with me. <br>
i'll make it possible for you.
</div>
<div class="name">
<label for="name">Name</label>
<input type="text" placeholder="Full Name">
</div>
<div class="email">
<label for="email">Email</label>
<input type="email" placeholder="Email">
</div>
<div class="message">
<label for="name">Message</label>
<input type="text" placeholder="Message">
</div>
<div class="btn">
<button>SUBMIT</button>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="continer">
<h2>Haseeb Rehman</h2>
<p>All Rights Reserved</p>
<div class="lastclass">
<p>© 2021</p>
</div>
</div>
</footer>
</body>
</html>