-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (129 loc) · 6.25 KB
/
index.html
File metadata and controls
159 lines (129 loc) · 6.25 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Vivek</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css">
<!-- Google Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap&subset=latin-ext" rel="stylesheet">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<meta name="viewpot" content="width=device-width, initial-scale=1.0">
</head>
<!-- Body start here -->
<body>
<!--Start of Header-->
<header>
<nav class="nav">
<div class= "nav__head">
<h2>Portfolio</h2>
</div>
<div class="nav__list">
<a href="#projects" class="nav__link">Projects</a>
<a href="#about" class="nav__link">About me</a>
<a href="#skills" class="nav__link">Skills</a>
<a href="#footer" class="nav__link">Contact</a>
</div>
</nav>
</header>
<!--End of header-->
<!--Start of HERO section-->
<div class="wrapper">
<div class="intro">
<div class="section__head">
Hi, I am <br><strong><a class="shine">Vivek</a></strong>
</div>
<div class="main-img">
<img class ="intro__img" src="img/viv-pic.png" alt="a picture of Vivek">
</div>
</div>
<!--End of HERO section-->
<!--Start of About me-->
<div class="about_me" >
<div class="about_me_info" id="about">
<h1 class="about-back">ABOUT ME</h1>
<p class ="about_text">Seeking a position to Utilize my skills and learn new things. As a fresher my first motive is to gain experience in my skill and utilize it for a better world.
</p>
</div>
</div>
<!--End of About me-->
<!--Start of Projects-->
<!--color = ["#C1C6D7", "#FF99A8", "#DBCABD", "#FFBC99", "#E5B5B3"]-->
<section class="projects" id="projects">
<h3 class="section-title">Projects</h3>
<div class="container">
<div class="project">
<div class="about-project">
<h2>Interview Bot</h2>
<p>An interactive bot which will conduct interview and generate report and base on this result candidate will be shortlisted.</p>
</div>
<div class="project-logo">
<a href="#"><img class="image-main" src="img/interview-bot.jpg" alt="Interview bot" data-color="#66fcf1"><img class="image-hover" src="img/bot.jpg" alt="Interview bot" data-color="#66fcf1"></a>
</div>
</div>
<div class="project">
<div class="about-project">
<h2>Movie Recommender</h2>
<p>Content based movie recommendation system, which recommends similar movies to the movie you have watched.</p>
</div>
<div class="project-logo">
<a href="https://mrs-vivek.herokuapp.com/">
<img src="img/movie-recommender.jpg" alt="movie recommender" data-color="#FF99A8">
</a>
</div>
</div>
<div class="project">
<div class="about-project">
<h2>Responsive Blogger Template</h2>
<p>Fully responsive blogger theme</p>
</div>
<div class="project-logo">
<a href="https://kenvent00.blogspot.com/"><img src="img/Blogger-template.png" alt="Responsive blogger template" data-color="#FFBC99"></a>
</div>
</div>
</div>
</section>
<!--End of Projects-->
<!--Start of Skills section-->
<div class="my-skills" id="skills">
<h3 class="section-title">My Skills</h3>
<div class="container">
<img src="img/DARK-SKILLS.png" alt="my-skills">
</div>
</div>
<!--End of Skills section-->
</div>
<!--End of Wrapper-->
<!--Start of Footer-->
<footer id = "footer">
<div class="footer_info">
<h2>Vivek</h2>
<h3>Shimla, Himachal Pradesh, India</h3><br>
<div class= "footer__info">
<span>+919882860531</span>
<span> | </span>
<span>Kv15386@gmail.com</span>
</div>
</div>
<div class="social_list">
<a class="social__link" href="mailto:kv15386@gmail.com">
<i class="fab fa fa-envelope aria-hidden="true"></i>
</a>
<a class="social__link" href="https://www.instagram.com/viv_ek43/">
<i class="fab fa-instagram"></i>
</a>
<a class="social__link" href="https://www.youtube.com/channel/UCFPUDgD3yBxTYTFj-NuPlYA">
<i class="fab fa-youtube"></i>
</a>
<a class="social__link" href="https://www.hackerrank.com/Vivek4369">
<i class="fab fa-hackerrank"></i>
</a>
<br><br>
</div>
</footer>
<!--End of Footer-->
</body>
</html>