-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·84 lines (75 loc) · 3.74 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
<!DOCTYPE html>
<html>
<head>
<title>Manish Prajapati - Portfolio webpage</title>
<!-- css files -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.1/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<link rel="icon" type="image/x-icon" href="assets/img/favicon.png">
<meta name="author" content="Manish Prajapati">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Navbar -->
<nav class="nav container void-background">
<div class="nav-left">
<a href="./assets/resume.pdf" class="nav-item resume" style="color: #f8f8ff; font-weight: bold;">
Resume
</a>
</div>
<div class="nav-right nav-menu">
<a class="nav-item" href="#about">About</a>
<a class="nav-item" href="#connect">Connect</a>
</div>
<!-- This "nav-toggle" is only visible on mobile -->
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
</nav>
<!-- About Me -->
<section id="about" class="section section-1">
<div class="container has-text-centered">
<img class="avatar" src="assets/img/profile.png">
</div>
<div class="container"></br>
<p class="intro" style="padding-bottom: 10px; color: #f8f8ff; ">
Hey there! I am Manish Prajapati, currently pursuing my bachelor's from <a href="https://www.iitg.ac.in/" style="font-weight: 1000; color: #728FCE;">Indian Institute of Technology </a>in Mathematics and Computing. I am interested in software development and works surrounding it. I have done the Software Enginnering internship in <a href="https://www.microsoft.com/en-in/msidc/" style="font-weight: 1000; color: #728FCE;"> Microsoft IDC </a> in 2022. Previously, I have worked with <a href="https://www.gox.ai/" style="font-weight: 1000; color: #728FCE;"> Gox</a> as a Web Development internship and also built some cool projects. You can view my resume <a href= "./assets/resume.pdf" style="font-weight: 1000; color: #728FCE;"> here </a>.
</p>
<p class="intro" style="color: #f8f8ff; ">
Talking about my life, I am an Indian, was born in Madhya Pradesh, primary education in Gujarat, and Secondary & Senior Secondary education in Uttar Pradesh, and now in Assam for the Bachelor's in Technology. I love travelling, workout, and watching Marvel Cinematic Universe (movies or web series). let's connect and talk more !!
</p>
</div>
</section>
<!-- Social -->
<section id="connect" class="section section-3">
<div class="container">
<div class="has-text-centered">
<h3 class="title is-3">Let's Connect or Say Hi!!</h3>
</div>
<div class="social-container columns">
<div class="column is-3 has-text-centered">
<a target="_blank" href="https://www.linkedin.com/in/manish210/"><img class="" src="assets/img/linkedin.png"></a>
</div>
<div class="column is-3 has-text-centered">
<a target="_blank" href="https://github.com/Manish-210"><img class="" src="assets/img/github.jpeg"></a>
</div>
<div class="column is-3 has-text-centered">
<a target="_blank" href="https://twitter.com/210manish"><img class="" src="assets/img/twitter.jpeg"></a>
</div>
<div class="column is-3 has-text-centered">
<a target="_blank" href="https://www.facebook.com/profile.php?id=100015912336367"><img class="" src="assets/img/facebook.png"></a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<section class="section-4 has-text-centered container">
<a href="#"> © Developed and Maintained by Manish Prajapati</a>
</section>
<!-- Scripts -->
<script src="controller.js"></script>
</body>
</html>