-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (107 loc) · 4.89 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
<!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>Capstone Project</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
.ref{
background-image: url(background.png);
background-size: 100% auto;
background-repeat: no-repeat;
}
.mek{
border-radius: 80px;
}
.log{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: rgb(255, 255, 255);
}
.lost{
color: #28f05a;
}
.lot{
font-style: italic;
}
.cat{
float: left;
height: 200px;
width: 200px;
margin-right: 30px;
}
.gradient-background {
background: radial-gradient( #0d9ff3,#ff54d4);
background-size: 180% 180%;
animation: gradient-animation 10s ease infinite;
}
.bil{
color: rgb(0, 0, 0);
}
.pil{
color: black;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
</style>
</head>
<body class="gradient-background">
<div id="home" class="px-4 py-5 my-100 justify-content-center text-center ref">
<h1 class="log bil">I'm Mehak</h1>
<h3 class="log bil lot">a programmer</h3>
</div>
<div id="about" class="px-4 py-5 my-5 text-center border-bottom">
<img class="d-block mx-auto mb-4 mek" src="mehekk.jpeg" alt="" width="160" height="160">
<h2 class="log display-5 fw-normal lost">Hello There</h2>
<div class="col-lg-6 mx-auto">
<p class=" log lead mb-2">I am a Web Developer currently pursuing my B.E. in <b>Electrical Engineering</b> at <b>Birla Institute of Technology and Science,Pilani.</b></p>
<p class="log lead mb-4" >I empathize with the user to discover problems and find creative solutions. My goal is to create bold, relevant and easy to understand solutions for the users.</p>
<div class="log d-grid gap-2 d-sm-flex justify-content-sm-center">
</div>
</div>
</div>
<div class="text-center mt-5"><h1 class=" log " style="color:white;">My Skills</h1> </div>
<div class="container col-xxl-8 px-4">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img src="Common App 2013 Breakdown.jpeg" class="d-block mx-lg-auto img-fluid" alt="cat pic" width="700" height="500" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-normal log lh-1 lost mb-3">Design and Development</h1>
<p class="lead log">I started learning to code when I was 20 (21 now) because I wanted to make my own video games and websites. Over time, I have gained a wealth of experience designing and developing web applications.</p>
</div>
</div>
</div>
<div class="container col-xxl-8 px-4">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img src="landingpage.png" class="d-block mx-lg-auto img-fluid" alt="noodles pic" width="700" height="400" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-normal lh-1 log lost mb-3">Socialseller Summer Intern</h1>
<p class="lead log">I created a landing page for an Educational startup company <b>Socialseller</b> offering online courses for effective Marketing and Business Management. The wire-framing was created using Figma, Canva and Adobe Express adding a lot of experience for me to work comfortably as a Designer. The Webpage itself was created using HTML, CSS and JavaScript.</p>
</div>
</div>
</div>
<div class="container">
<footer class="py-3 my-4">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Home</a></li>
<li class="nav-item"><a href="https://linkedin.com/in/mehak-mahajan1711" class="nav-link px-2 text-body-secondary">Linkedin</a></li>
<li class="nav-item"><a href="https://github.com/mehekk1" class="nav-link px-2 text-body-secondary">Github</a></li>
<li class="nav-item"><a href="#about" class="nav-link px-2 text-body-secondary">About</a></li>
</ul>
</footer>
</div>
</body>
</html>