-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (68 loc) · 3.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel = stylesheet href = css/style.css>
<link rel = icon href = favicon/dinkar.ico>
<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:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sacramento&display=swap" rel="stylesheet">
</head>
<body>
<!-- top container -->
<div class = top-container>
<img class = "profile-pic" src="images/profile.png" alt="profile-image">
<img class = top-cloud alt = top-cloud src = images/cloud.png>
<div class = parent-name>
<h1 class = name>I am Dinkar</h1>
<h2 class = description>a programmer</h2>
</div>
<img class = bottom-cloud alt = bottom-cloud src = images/cloud.png>
<img class = mid-cloud alt = mid-cloud src = images/cloud.png>
<div class = mountains>
<!-- <img alt = mountain class = mountain-leftmost src = images/mountain.png> -->
<img alt = mountain class = mountain-left src = images/mountain.png>
<img alt = mountain class = mountain-mid src = images/mountain.png>
<img alt = mountain class = mountain-right src = images/mountain.png>
<!-- <img alt = mountain class = mountain-rightmost src = images/mountain.png> -->
</div>
</div>
<!-- middle container -->
<div class="middle-container">
<div class="profile">
<img class = "profile-mid" src="images/profile.png" alt="profile-image">
<h1 class = hello>Hello.</h1>
<p class = my-desc>I am Dinkar Gupta, currently pursuing my bachelor's degree. I am in my Junior year right now.</p>
</div>
<hr>
<div class="skills">
<h1 class = "my-skills">My Skills.</h1>
<div class="skill-row">
<img class="web-dev" src="images/webl.png" alt="web-dev">
<h3 class = web-head>Web Development</h3>
<p>I am a budding web developer. I dont know much but I am learning and will be proficient in no time.</p>
</div>
<div class="skill-row">
<img class="android-dev" src="images/appd.png" alt="">
<h3>Android Development</h3>
<p>I have basic knowledge in Android dev and I am capable of making basic projects as of now.</p>
</div>
</div>
<hr>
<div class="contact-me">
<h1 style = "margin-top: 70px">Get In Touch</h1>
<h3>If you love android as much as I do.</h3>
<h4>Love Android? Let's make some apps together!!</h4>
<a class="btn" href="mailto:name@email.com">CONTACT ME</a>
</div>
</div>
<div class = "bottom-container">
<a class = "footer-link" href = "https://linkedin.com/in/dinkar-gupta/">LinkedIn</a>
<a class = "footer-link" href=https://x.com/dinkar_gupta_>X</a>
<a class = "footer-link" href="https://leetcode.com/u/dinkar_gupta_/">Leetcode</a>
<p class = "name-bottom">© Dinkar Gupta @ CES</p>
</div>
</body>
</html>