forked from greenelab/lab-website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (57 loc) · 1.59 KB
/
index.html
File metadata and controls
58 lines (57 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Ucar Lab's Technical-Home</title>
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(to right, #2c3e50, #4ca1af);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 10px;
}
h1 {
font-size: 3em;
margin-bottom: 0.5em;
}
p {
font-size: 1.2em;
margin-bottom: 1.5em;
}
a {
display: inline-block;
margin: 0 10px;
padding: 10px 20px;
font-size: 1em;
color: #fff;
text-decoration: none;
border: 2px solid #fff;
border-radius: 5px;
transition: background 0.3s, color 0.3s;
}
a:hover {
background: #fff;
color: #2c3e50;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Ucar Lab's Technical-Home</h1>
<p>Explore our projects and learn more about us.</p>
<a href="https://ucarlab.com/" target="_blank">Visit Our Website</a>
<a href="https://github.com/UcarLab/" target="_blank">Visit Our GitHub</a>
</div>
</body>
</html>