-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathktwq.html
More file actions
134 lines (134 loc) · 3.9 KB
/
ktwq.html
File metadata and controls
134 lines (134 loc) · 3.9 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<style>
*{
box-sizing: border-box;
}
body {
margin: 0;
}
.column_left {
float: left;
padding: 10px;
height: 5px;
width: 75%;
}
.vertical-menu{
float:right;
width: 25%;
}
.vertical-menu a{
background-color: #eee;
height:95px;
color: blue;
display: block;
padding: 12px;
text-decoration: none;
font-family: 'Times New Roman', Times, serif;
font-size: 90px;
font-weight:bold;
text-align: center;
}
.vertical-menu a:hover {
background-color: #ccc;
}
.vertical-menu a.active {
background-color: #4CAF50;
color: white;
}
.column_left div {
display:none;
background-color:#aaa;
margin: 0px 5px;
}
.column_left div p{
font-style:italic;
font-variant: normal;
font-weight:normal;
font-size:20px;
text-align:center;
line-height: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
</style>
</head>
<body>
<script>
function myFunction1() {
var x = document.getElementById('myperinfo');
if (x.style.display === 'none') {
x.style.display = 'block';
} else {
x.style.display = 'none';
}
}
function myFunction2() {
var y = document.getElementById('myeduinfo');
if (y.style.display === 'none') {
y.style.display = 'block';
} else {
y.style.display = 'none';
}
}
function myFunction3() {
var z = document.getElementById('myinthob');
if (z.style.display === 'none') {
z.style.display = 'block';
} else {
z.style.display = 'none';
}
}
function myFunction4() {
var a = document.getElementById('aboutme');
if (a.style.display === 'none')
{
a.style.display = 'block';
} else{
a.style.display = 'none';
}
}
function myFunction5() {
var b = document.getElementById('achievements');
if (b.style.display === 'none') {
b.style.display = 'block';
} else {
b.style.display = 'none';
}
}
</script>
<div><h1 style="text-align:center"><marquee>Welcome to the Curriculum Vitae Website</marquee></h1></div>
<div class="row">
<div class="column_left" style="background-color:#aaa;">
<div id="ap" style="display:block;">
<p style="text-align:'center'"><strong>Welcome to my CV</strong></p>
</div>
<div id="myperinfo">
<p>Name:Akash<br>Surname:Sharma<br>Place of Birth:Patna<br>Address:324,L Block,MensHostel,VIT University,Vellore-632014<br>Date of Birth:24/4/1997<br>Nationality:Indian<br>E-mail:akash.2016@vitstudent.ac.in</p>
</div>
<div id="myeduinfo">
<p>Matriculation:-Delhi Public School Patna(10 CGPA)<br>Intermediate:-Delhi Public School Patna(91.6%)<br>Graduation:-B.Tech(IT),VIT Vellore,Currently in 2nd Year</p>
</div>
<div id="myinthob">
<p>I love to sing and listen to music.<br>I love to play games like cricket<br>I like to meet new people and explore new cultures</p>
</div>
<div id="aboutme">
<p>I am an outgoing person.<br>I am a disciplined person and like to be punctual and follow the schedule properly.<br>I am also determined and when I put my mind into something I try to give my 100 percent.<br></p>
</div>
<div id="achievements">
<p>HT Award for academic performance in class 10<br>Merit Scholarship in VITEEE-2016 of Rs 50000/annum</p>
</div>
</div>
<div class= "vertical-menu">
<a href="#" id="ap" class="active">Home</a>
<a onclick="myFunction1()" href="javascript:void(0);">Personal Data</a>
<a onclick="myFunction2()" href="javascript:void(0);">Education</a>
<a onclick="myFunction3()" href="javascript:void(0);">Interests and hobbies</a>
<a onclick="myFunction4()" href="javascript:void(0);">About Me</a>
<a onclick="myFunction5()" href="javascript:void(0);">Achievements</a>
</div>
</body>
</html>