-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (114 loc) · 4.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mansi Sharma</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href='http://fonts.googleapis.com/css?family=Raleway:400,100,300,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bad+Script&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<!-- FontAwesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" integrity="sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu" crossorigin="anonymous">
<!-- Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/jquery.parallax.css">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$(".uncheck").click(function(){
$("#check").prop("checked", false);
});
});
</script>
<!-- The favicon -->
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body>
<header>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">
<img src="img/android-chrome-512x512.png" style="height: 4.45em; width: 6em;" alt="logo">
</label>
<ul>
<li><a class="active uncheck" id="home-btn" href="#">Home</a></li>
<li><a href="#" class="uncheck" id="about-btn">About</a></li>
<li><a href="#" class="uncheck" id="exp-btn">Experience</a></li>
<li><a href="#" class="uncheck" id="project-btn">Projects</a></li>
<li><a href="#" class="uncheck" id="certi-btn">Certifications</a></li>
</ul>
</nav>
</header>
<!-- Home Page -->
<div class="content" id="home-container">
<div class="container-fluid">
<div class="bottom">
<img src="resuorces/land.svg" style="width: 100%; opacity: 0.6;"/>
</div>
<div class="row">
<div class="col-md-6 col-xs-12">
<div class="header-inner">
<h1><strong>I'm Mansi Sharma</strong></h1>
<h3>A passionate learner and explorer!</h3>
</div>
</div>
<div class="col-md-6 col-xs-12">
<div id="skills">
<div class="floating-text" data-text="React" style="font-size: 3.5vw; color: rgb(180, 64, 103);">React</div><br>
<div class="floating-text" data-text="Web Development" style="font-size: 4vw; line-height: 2em; color: rgb(106, 15, 192);">Web Development</div><br>
<div class="floating-text" data-text="Python" style="font-size: 5.5vw; line-height: 0.5em; color: rgb(100, 61, 10);">Python</div>
<div class="floating-text" data-text="Go" style="font-size: 2.5vw; color: rgb(143, 16, 16);">Go</div><br>
<div class="floating-text" data-text="C++" style="font-size: 4.5vw; line-height: 1em; color: rgb(44, 75, 167);">C++</div>
<div class="floating-text" data-text="Game Development" style="font-size: 2.2vw; color: rgb(180, 64, 103);">Game Development</div><br>
<div class="floating-text" data-text="Machine Learning" style="font-size: 4vw; line-height: 1em; color: rgb(1, 80, 1);">Machine Learning</div><br>
<div class="floating-text" data-text="Haskell" style="font-size: 2.5vw; color: rgb(173, 126, 5);">Haskell</div>
<div class="floating-text" data-text="javaScript" style="font-size: 4.5vw; line-height: 1em; color: rgb(97, 2, 97);">javaScript</div>
</div>
</div>
</div>
</div>
</div>
<!-- About Page -->
<div class="row d-md-none containers" id="about-container">
<div class="col-md-12 my-auto">
<section id="about-section">
</section>
</div>
</div>
<!-- Experience Page -->
<div class="row d-md-none containers" id="exp-container">
<div class="col-md-12 my-auto">
<section id="experience-section">
</section>
</div>
</div>
<!-- Projects Page -->
<div class="row d-md-none containers" id="project-container">
<div class="col-md-12 my-auto">
<section id="project-section">
</section>
</div>
</div>
<!-- Certifications Page -->
<div class="row d-md-none containers" id="certi-container">
<div class="col-md-12 my-auto">
<section id="certi-section">
</section>
</div>
</div>
<!-- JS -->
<script src="js/app.js"></script>
</body>
</html>