-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdh-toolkit.html
59 lines (53 loc) · 1.7 KB
/
dh-toolkit.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&display=swap" rel="stylesheet">
<title>DH Tool Kit</title>
</head>
<body id="toolKitBG">
<div class="title toolKitTitle">
<h1>Let's put together our Digital Humanities Tool Kit :)</h1>
<p>Click and drag the items you want into the box</p>
</div>
<div class="nav backArrow">
<p><a href="index.html">
<img src="images/arrow-left-solid.svg" alt="solid left-pointing arrow" width="30">
</a></p>
</div>
<div id="computer" class="tool">
<p>
<img src="images/computer.svg" alt="computer illustration" width="300">
</p>
</div>
<div id="postIt" class="tool">
<p>
<img src="images/postIt.svg" alt="classic yellow postIt" width="200">
</p>
</div>
<div id="coffee" class="tool">
<p>
<img src="images/coffee.svg" alt="brown cup of hot coffee" width="150">
</p>
</div>
<div id="magnify" class="tool">
<p>
<img src="images/magnifyingGlass1.svg" alt="magnifying glass" width="150">
</p>
</div>
<div id="books" class="tool">
<p>
<img src="images/books.svg" alt="stack of books" width="240">
</p>
</div>
<div id="toolKit">
<div id="boxContainer">
<p class="box boxBack"><img src="images/boxBack.svg" alt="back side of green open top box" width="868"></p>
<p class="box boxFront"><img src="images/boxFront.svg" alt="front side of green open top box" width="800"></p>
</div>
</div>
<script src="toolkit.js"></script>
</body>
</html>