-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathi.html
159 lines (143 loc) · 6.84 KB
/
i.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
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 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>Personal Portfolio</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/db5400783a.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="header">
<div class="container">
<nav>
<img src="logo.png" alt="LOGO" class="logo">
<ul>
<li><a href="#header">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#photos">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#contact">CV</a></li>
</ul>
</nav>
<div class="header-text">
<p>CSE Student</p>
<h1>Vansh Raj Chauhan</h1>
<h6>University of Petroleum and Energy Studies <br> Energy Acres PO Bidholi via Prem Nagar <br> Dehradun-248007 (Uttarakhand), India
</h6>
</div>
</div>
</div>
<!-- ABOUT ME ______________________ -->
<div id="about">
<div class="container">
<div class="row">
<div class="about-col-1">
<img src="https://www.pexels.com/search/nature/" alt="me">
</div>
<div class="about-col-2">
<h1 class="subtitle">About Me</h1>
<p>My name is Vansh Raj Chauhan. I am 18 years old. I am pursuing computer science and engineering from UPES (University of Petroleum and Energy Studies). I completed my high school from Delhi Public School, Gurgaon. I am an enthusiast and a keen learner, offers strong communication, multi-tasking and problem solving skills along with empathy. My academic experince so far has provided me with a lot of exposure which has made me grow as a person as well as an academic. I seek to learn new skills and challenge myself to push myself to the maximum limit. I am always motivated to achieve the best which hence motivates me to work even harder to give my absolute best at any challenge or a problem that I may face. I am a web developer and a cloud enthusiast.
</p>
<div class="tab-titles">
<p class="tab-links active-link" onclick="opentab('cskills')">Computer Skills</p>
<p class="tab-links"onclick="opentab('planguages')">Programming Languages</p>
<p class="tab-links"onclick="opentab('skills')">Skills</p>
</div>
<div class="tab-contents active-tab" id="cskills">
<ul>
<li><span>MS Office</span></li>
<li><span>Canva</span></li>
</ul>
</div>
<div class="tab-contents" id="planguages">
<ul>
<li><span>C</span></li>
<li><span>HTML</span></li>
<li><span>CSS</span></li>
<li><span>JavaScript</span></li>
<li><span>ReactJS</span></li>
<li><span>Python</span></li>
<li><span>Java</span></li>
</ul>
</div>
<div class="tab-contents" id="skills">
<ul>
<li><span>Confidence</span></li>
<li><span>Communicational Skills</span></li>
<li><span>Leadership skills</span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- photos------------------------------------- -->
<div id="photos">
<div class="container">
<h1 class="sub-title">My Clicks</h1>
<div class="photo-list">
<div>
<a href="https://www.pexels.com/search/nature/"><img src="pic1.jpg" height="150px" alt=""></a>
</div>
<div>
<a href="https://www.pexels.com/search/nature/"><img src="pic2.jpg" height="150px" alt=""></a>
</div>
<div>
<a href="https://www.pexels.com/search/nature/"><img src="pic3.jpg" height="150px" alt=""></a>
</div>
<div>
<a href="https://www.pexels.com/search/nature/"><img src="pic4.jpg" height="150px" alt=""></a>
</div>
<div>
<a href="https://www.pexels.com/search/nature/"><img src="pic5.jpg" height="150px" alt=""></a>
</div>
</div>
</div>
</div>
<!-- contact---------------------- -->
<br>
<div id="contact">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact me</h1>
<p><i class="fas fa-paper-plane"></i> Vanshchauhan1310@gmail.com</p>
<p><i class="fas fa-phone-square-alt"></i> 9818270753</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/bhavika-jetwani/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://www.instagram.com/bhavikaa25/"><i class="fa-brands fa-instagram"></i></a>
<a href="https://github.com/vanshchauhan1310"><i class="fa-brands fa-github"></i></a>
</div>
<a href="Bhavika_Resume.pdf" download class="btn">Download CV</a>
</div>
<div class="contact-right">
<form action="">
<input type="text" name="Name" placeholder="Your Name" required>
<input type="text" name="email" placeholder="Your Email" required>
<textarea name="Message" rows="6" placeholder="Your Message"></textarea>
<button type="submit" class="btn">Submit</button>
</form>
</div>
</div>
<div class="copyright">
<p>Copyright © Made wtih <i class="fas fa-heart"></i> by Vansh Raj Chauhan. </p>
</div>
</div>
<script>
var tablinks = document. getElementsByClassName ("tab-links");
var tabcontents = document. getElementsByClassName ("tab-contents");
function opentab (tabname){
for(tablink of tablinks){
tablink. classList. remove ("active-link");
}
for (tabcontent of tabcontents){
tabcontent. classList. remove("active-tab");
}
event. currentTarget. classList. add("active-link");
document.getElementById(tabname).classList.add("active-tab");
}
</script>
</body>
</html>