forked from jschof1/DataEthicsCanvas-TranslationTemplate
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
127 lines (97 loc) · 4.36 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Data Ethics Canvas</title>
</head>
<body style="background-image: url('assets/colour/template-blank.jpg'); background-size: 7016px 4961px; background-position: absolute; background-repeat: no-repeat;">
<svg id="mySVG" xmlns="http://www.w3.org/2000/svg" width="7016" height="4961">
<g>
<foreignObject y="720" x="330" width="1035" height="1035">
<div id="container-1">
</div>
</foreignObject>
<foreignObject y="720" x="1660" width="1035" height="1035">
<div id="container-2">
</div>
</foreignObject>
<foreignObject y="720" x="2980" width="1035" height="1035">
<div id="container-3">
</div>
</foreignObject>
<foreignObject y="720" x="4310" width="1035" height="1035">
<div id="container-4">
</div>
</foreignObject>
<foreignObject y="720" x="5630" width="1035" height="1035">
<div id="container-5">
</div>
</foreignObject>
<foreignObject y="2080" x="330" width="1035" height="1035">
<div id="container-6">
</div>
</foreignObject>
<foreignObject y="2080" x="1660" width="1035" height="1035">
<div id="container-7">
</div>
</foreignObject>
<foreignObject y="2080" x="2980" width="1035" height="1035">
<div id="container-8">
</div>
</foreignObject>
<foreignObject y="2080" x="4310" width="1035" height="1035">
<div id="container-9">
</div>
</foreignObject>
<foreignObject y="2080" x="5630" width="1035" height="1035">
<div id="container-10">
</div>
</foreignObject>
<foreignObject y="3430" x="330" width="1035" height="1035">
<div id="container-11">
</div>
</foreignObject>
<foreignObject y="3430" x="1660" width="1035" height="1035">
<div id="container-12">
</div>
</foreignObject>
<foreignObject y="3430" x="2980" width="1035" height="1035">
<div id="container-13">
</div>
</foreignObject>
<foreignObject y="3430" x="4310" width="1035" height="1035">
<div id="container-14">
</div>
</foreignObject>
<foreignObject y="3430" x="5630" width="1035" height="1035">
<div id="container-15">
</div>
</foreignObject>
<foreignObject id="corner-containers" y="-115" x="4560" width="3000" height="535">
<h2 id="top-right"></h2>
</foreignObject>
<foreignObject id="corner-containers" y="320" x="6570" width="320" height="150">
<h2 id="top-right-date"></h2>
</foreignObject>
<foreignObject id="corner-containers" y="110" x="110" width="610" height="300">
<img id="top-left" src=""/>
</foreignObject>
<foreignObject id="corner-containers" y="4735" x="50" width="1700" height="204">
<h2 id="bottom-left"></h2>
</foreignObject>
<foreignObject id="corner-containers" y="4805" x="5870" width="1035" height="150">
<div class="image-text">
<img id="license-logo" src=""> <h2 id="bottom-right-license"></h2>
</div>
</foreignObject>
<foreignObject id="corner-containers" y="4780" x="5230" width="500" height="150">
<h2 id="bottom-right-link"></h2>
</foreignObject>
</g>
</svg>
</body>
<script src="main.js"></script>
</html>