-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteaching.html
More file actions
82 lines (74 loc) · 2 KB
/
teaching.html
File metadata and controls
82 lines (74 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hariprashad Ravikumar</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
max-width: 1200px;
margin: 0 auto;
}
header {
background: #000 no-repeat center url("images/cover_website.jpeg");
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
padding: 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
img.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%; /* Keep this for circular appearance */
margin-top: 20px;
}
header h1, header p {
margin: 0;
text-shadow: 2px 2px 10px #000000, 0 0 30px blue, 0 0 8px darkblue;
}
nav {
max-width: 100%;
}
main {
padding: 20px;
background-color: #fff;
max-width: 100%;
margin: 0 auto;
}
.research-figure img {
border-radius: 0; /* Set border-radius to 0 or remove it to prevent circular appearance */
}
</style>
</head>
<body>
<header>
<!-- <img src="images/profile-picture.jpeg" alt="Profile Picture" class="profile-picture"> -->
<div class="blank-space" style="width: 100px; height: 15px;"></div>
<h1>Hariprashad Ravikumar</h1>
<p>PhD Candidate (Theoretical Particle Physics)</p>
<div class="blank-space" style="width: 100px; height: 110px;"></div>
</header>
<nav>
<ul>
<li><a href="./">About Me</a></li>
<li><a href="/cv">CV</a></li>
<li class="current"><a href="/">Talks</a></li>
<li><a href="/publications">Publications</a></li>
<li><a href="/lecture-notes">Lecture Notes</a></li>
</ul>
</nav>
<main>
</main>
<footer>
<p>© 2023 Hariprashad Ravikumar. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>