-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (100 loc) · 4.82 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
<!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>PORTFOLIO</title>
<link rel="stylesheet" href="./src/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class="hero">
<nav>
<img src="./src/images/logo.png" alt="log" class="logo">
<ul class="nav-list">
<li><a href="#about-me">About Me</a></li>
<li><a href="#cert">Acheivements</a> </li>
<li><a href="#contact">Contact</a></li>
</ul>
<button class="menu" id="menu">
<i class="fa fa-bars"></i>
</button>
</nav>
<div class="hero-area">
<div class="hero-text">
<h1>Usman Showkat</h1>
<p>Aspiring Full-Stack Developer</p>
<div class="button"><a href="#about-me">About Me</a></div>
</div>
<div class="socials">
<div class="git"><a href="https://www.linkedin.com/in/usman-rangrez-125a07ab/" target="_blank"><img src="./src/images/icons8-github.svg" alt="GH"></a></div>
<div><a href="https://github.com/usmanrangrez" target="_blank"><img src="./src/images/icons8-linkedin-circled.svg" alt="LI"></a></div>
<div><a href="https://twitter.com/usmaanrangrez" target="_blank"><img src="./src/images/icons8-twitter (1).svg" alt="TW"></a></div>
</div>
</div>
</section>
<section class="sub-section" id="about-me">
<div class="inforamtion">
<h2>About Me</h2>
<p class="para">Hello. My Name is Usman Showkat. I am a Web Developer. I am pursuing B.Tech in Computer Science &
Engineering from SRM IST, and my primary focus
and inspiration for my studies is Full Stack Web
Development.
</p>
<p class="para">In my free time, I play football and online
video games. I am both self-driven and
self-motivated, and I am constantly
experimenting with new technologies and
techniques. I stand on a sweet spot where design meets code.
</p>
</div>
<div class="headshot-container">
<img src="./src/images/bg.jpeg" alt="Usman" class="headshot">
</div>
</section>
<section class="sub-section-alternative" id="cert">
<h2>CERTICATIONS</h2>
<div class="project-container">
<div class="project-card">
<img src="./src/images/1.jpg" alt="Ach-1 Image" class="project-image">
<h3>WEB DEV BOOTCAMP</h3>
<!-- <p class="subtext">This is my project</p> -->
<hr>
<!-- <p class="subtext">View here</p> -->
</div>
<div class="project-card">
<img src="./src/images/card2.jpg" alt="Ach-1 Image" class="project-image">
<h3>HTML</h3>
<!-- <p class="subtext">This is my project</p> -->
<hr>
<!-- <p class="subtext">View here</p> -->
</div>
<div class="project-card">
<img src="./src/images/card5.jpg" alt="Ach-1 Image" class="project-image">
<h3>DSA USING C/C++</h3>
<!-- <p class="subtext">This is my project</p> -->
<hr>
<!-- <p class="subtext">View here</p> -->
</div>
<div class="project-card">
<img src="./src/images/card3.jpg" alt="Ach-1 Image" class="project-image">
<h3>C<h3>
<!-- <p class="subtext">This is my project</p> -->
<hr>
<!-- <p class="subtext">View here</p> -->
</div>
</div>
</section>
<footer id="contact">
<h2>Contact me</h2>
<div class="ff">
<div class="git-new"><a href="https://www.linkedin.com/in/usman-rangrez-125a07ab/" target="_blank"><img src="./src/images/icons8-github.svg" alt="GH"></a></div>
<div><a href="https://github.com/usmanrangrez" target="_blank"><img src="./src/images/icons8-linkedin-circled.svg" alt="LI"></a></div>
<div><a href="https://twitter.com/usmaanrangrez" target="_blank"><img src="./src/images/icons8-twitter (1).svg" alt="TW"></a></div>
</div>
<p class="last">“If you're already a front-end developer, well, pretend you're also wearing a pirate hat.”</p>
</footer>
<script src="./src/app.js"></script>
</body>
</html>