-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (95 loc) · 2.29 KB
/
index.html
File metadata and controls
95 lines (95 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oxford Self-Modelling Group</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #004080;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
margin: 20px;
text-align: center;
}
nav a {
margin: 0 15px;
color: #004080;
text-decoration: none;
font-size: 1.1em;
}
nav a:hover {
text-decoration: underline;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
main h2 {
color: #004080;
margin-top: 0;
}
footer {
background-color: #004080;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>Oxford Self-Modelling Group</h1>
</header>
<nav>
<a href="#about">About Us</a>
<a href="#research">Research</a>
<a href="#team">Our Team</a>
<a href="#contact">Contact</a>
</nav>
<main>
<section id="about">
<h2>About Us</h2>
<p>placeholder.</p>
</section>
<section id="research">
<h2>Research</h2>
<p>placeholder</p>
</section>
<section id="team">
<h2>Our Team</h2>
<p>placeholder</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>placeholder</p>
</section>
</main>
<footer>
<p>© 2024 Oxford Self-Modelling Group. All rights reserved.</p>
</footer>
</body>
</html>