-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 2.67 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
<!DOCTYPE html> <!-- This tells the browser whats the version of html , in this case latest version html5 -->
<html>
<head>
<meta charset="utf-8"> <!-- This basically tells the browser to encode the website in unicode-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<title>Asad Parkar</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="fav.ico">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Montserrat&family=Sacramento&display=swap" rel="stylesheet"></head>
<body>
<div class="top-container">
<img class="cloud-1" src="images/cloud.png" alt="cloud">
<h1>I'm Asad.</h1>
<h2>a <span class="underline">pro</span>grammer.</h2>
<img class="cloud-2" src="images/cloud.png" alt="cloud">
<img src="images/mountain.png" alt="cloud">
</div>
<div class="middle-container">
<div class="profile">
<img src="images/asad.jpg" alt="profile-picture">
<h2>Hello.</h2>
<p>I am a web developer. I am the Founder & Developer of Productovo. I love Marvel and their movies.</p>
</div>
<hr>
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img class="coder" src="images/coder.gif" alt="discord-bot">
<h3 class="para">Design and Development</h3>
<p>I started to code when I was 13 because i wanted to make my own video Games.
Over time i gained experience in making Discord Bots and Python Console Applications.
</p>
</div>
<div class="skill-row">
<img class="logo" src="images/social-media.gif" alt="social-media">
<h3 class="para">Social Media Handling</h3>
<p>Apart from Programming , i also study social media algorithms and i have been doing this since 2020. I also have experience in Handling
instagram pages.
</p>
</div>
</div>
<hr>
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>If you love programming as much as I do.</h3>
<p>Love Marvel as much as I do too? Lets talk about how cool they are! We can code while watching spiderman.</p>
<a class="btn" href="mailto:[email protected]">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/">LinkedIn</a>
<a class="footer-link" href="https://twitter.com/">Twitter</a>
<a class="footer-link" href="https://www.appbrewery.co/">Website</a>
<p>© 2021 Asad Parkar</p>
</div>
</body>
</html>