-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (55 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 20px;
text-align: center;
}
h1 {
color: #333;
font-size: 24px;
margin-bottom: 10px;
text-align: center;
}
h2 {
color: #666;
font-size: 18px;
margin-bottom: 10px;
text-align: center;
}
ul {
list-style-type: disc;
color: #666;
margin-bottom: 10px;
text-align: center;
}
li {
margin-left: 20px;
text-align: center;
}
a {
color: #4a82c3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>My First Page!</h1>
<h2>Subheading</h2>
<ul style="padding-left: 0;">
<li style="list-style-type: none;">A</li>
<li style="list-style-type: none;">Bulleted</li>
<li style="list-style-type: none;">List</li>
</ul>
</div>
<p>Click <a href="https://zoeleblanc.com/is310-computing-humanities-2024/materials/introducing-humanities-computing/06-intro-markup">here</a> for information on Zoe LeBlanc's 'Computing in the Humanities' course page</p>
</body>
</html>