-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (83 loc) · 2.15 KB
/
index.html
File metadata and controls
83 lines (83 loc) · 2.15 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
<html>
<head>
<title>Template page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="icon" type="image/png" href="https://template.chassidex.org/chassidex.png" />
<style>
* {
box-sizing: border-box;
}
@font-face {
src: url(https://template.chassidex.org/gir.otf);
font-family: main;
}
body{
padding: 0px;
margin: 0px;
font-family: main;
text-align: center;
}
header{
display: grid;
width: 100%;
background: #05080a;
color: #ffffff;
grid-template-columns: 1fr auto;
padding: 4mm;
text-align: left;
}
a {
text-decoration: none;
}
header img, footer img{
height: 8mm;
width: auto;
}
header span{
font-size: 6.5mm;
}
section{
display: inline-block;
width: 100%;
max-width: 200mm;
padding: 5mm;
}
footer{
width: 100%;
padding: 4mm;
background: #05080a;
color: #ffffff;
}
footer a{
font-size: 7mm;
color: #ffffff;
}
footer img{
vertical-align: -1.3mm;
}
</style>
</head>
<body>
<header>
<span>Template Page</span>
<a href="https://chassidex.org">
<img src="https://template.chassidex.org/chassidex-text.png">
</a>
</header>
<br>
<section>
<h1 style="padding-top: 30mm; font-weight: normal;">This is a template page</h1>
<p style="padding-bottom: 40mm; font-size: 5mm; text-align: justify;">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</section>
<br>
<footer>
<a href="https://chassidex.org">
<img src="https://template.chassidex.org/github.png">
  View Code
</a>
</footer>
</body>
</html>