-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
66 lines (57 loc) · 1.89 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resums</title>
<style>
#nav-bar{
overflow: hidden;
position: fixed;
top: 0;
width: 100%;
}
#nav-bar ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: white;
}
#nav-bar li {
float: left;
font-family: "Times New Roman", Times, serif;
font-size: 20px;
font-weight: bold;
position: relative;
text-align: center;
}
#nav-bar li a {
display: block;
color:black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
#nav-bar li a:hover {
background-color: #111;
color: white;
}
</style>
</head>
<body style="background-color: black;">
<nav id="nav-bar">
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#projects">Projects</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="index.html#skills">Skills</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<center>
<h1 style="color: white">Resume</h1>
<embed src= "pdf/Sai_Lahari_M_Automation.pdf" width="1000" height="700">
</center>
</body>
</html>