-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
61 lines (49 loc) · 2.23 KB
/
Copy pathIndex.html
File metadata and controls
61 lines (49 loc) · 2.23 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
<!DOCTYPE html>
<html>
<head>
<title>Bits and Bots 2025 student website</title>
<link rel="stylesheet" href="style.css">
<body>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.container {
width: 100%;
height: 300px;
overflow: hidden;
}
.container img {
width: 100%;
height: 100%;
object-fit: contain;
}
</style>
<style>
p {
font-family: 'Varela Round';
font-size: 18px;
color: black;
}
</style>
<h1> Random Thoughts of a Web Archivist</h1>
<img src="https://gleenz.github.io/all-things-web.github.io/webfolder/resized_copy-space-hands-with-chat-bubble.jpg" alt="thought bubble">
<br>
<br>
<h2>Introduction</h2>
<p> I'm putting this website together as a study project. My aim is to add information that is of use to colleagues who are interested in web archiving.</p>
<h2>Down the Web Archiving Rabbit Hole</h2>
<p>This interactive game demonstrates some of the problems we come across when archiving websites. It's a work in progress!</p>
<p>In this game you are the web crawler and your goal is to successfully capture the website.</p>
<a href="https://gleenz.github.io/all-things-web.github.io/webfolder/Rabbitwarrenindex.html" target="_blank">The Game</a>
<br>
<br>
<h2>Solitude</h2>
<p> I'm learning how to add image maps to my website. Click on the objects to learn more about the blessings of solitude.</p>
<img src="https://raw.githubusercontent.com/gleenz/all-things-web.github.io/main/webfolder/Solitude.jpg" alt="Solitude" width="700" height="600" usemap="#solitudemap">
<map name="solitudemap">
<area shape="rect" coords="50,100,250,300" alt="Stainedglass" href="https://gleenz.github.io/all-things-web.github.io/webfolder/stainedglass.html">
<area shape="rect" coords="400,100,600,450" alt="Flowers" href="https://gleenz.github.io/all-things-web.github.io/webfolder/flowers.html">
<area shape="rect" coords="200,300,350,450" alt="Candle" href="https://gleenz.github.io/all-things-web.github.io/webfolder/candle.html">
</map>
</body>
</head>
</html>