-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
157 lines (138 loc) · 3.78 KB
/
index.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Preetika Kaur</title>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Raleway', sans-serif;
line-height: 1.2;
background-color: #f2f2f2;
}
/* Fullscreen Hero Section */
.hero {
background-image: url('images/background1.JPG');
height: 50vh;
background-size: cover;
background-position: center;
position: relative;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: white;
}
.hero h1 {
font-size: 4rem;
margin: 0;
}
.hero p {
font-size: 1.5rem;
margin-top: 10px;
}
/* Overlay */
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.4); /* Adds a dark overlay */
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
/* Profile Section */
.profile-section {
display: flex;
justify-content: center;
align-items: center;
padding: 50px;
}
.profile-section img {
width: 250px;
height: auto;
border-radius: 70%;
margin-right: 40px;
}
.profile-description {
max-width: 600px;
}
.profile-description h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #333;
}
.profile-description p {
font-size: 1.2rem;
line-height: 1.8;
color: #666;
}
/* Navigation */
nav {
position: absolute;
top: 20px;
right: 20px;
z-index: 2;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
text-decoration: none;
color: white;
font-size: 1rem;
padding: 10px 20px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 5px;
transition: background-color 0.3s ease;
}
nav ul li a:hover {
background-color: rgba(0, 0, 0, 0.8);
}
</style>
</head>
<body>
<!-- Hero Section with Mountain Background -->
<header class="hero">
<div class="hero-content">
<h1>Preetika Kaur, M.S.</h1>
<p>PhD Student | Civil Engineering</p>
</div>
<!-- Navigation Bar -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Research.html">Research</a></li>
<li><a href="Awards_Honors.html">Awards</a></li>
<li><a href="Curruculum Vitae- Preetika.pdf">CV</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Profile Section -->
<section class="profile-section">
<img src="images/pop_sjhot.jpg" alt="Preetika Kaur Profile Picture">
<div class="profile-description">
<h2>Who am I?</h2>
<p>
I’m a PhD student in civil engineering with a passion for advancing my understanding of snow hydrology.
I am interested in exploring the power of remote sensing technologies, emerging snow models, and developing machine learning models
from extensively available climate datasets, thereby contributing to the sustainable management of water resources in snow-dominated regions.
</p>
</div>
</section>
</body>
</html>