-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (38 loc) · 915 Bytes
/
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
<style>
*::before,
*::after {
display: block;
padding: 1rem;
}
html {
font-family: monospace;
font-size: 1.25rem;
text-align: center;
padding: 1rem;
}
head {
display: block;
}
body {
display: inline;
margin: 0;
}
html::before {
content: 'This is a working website with only one HTML tag.';
}
html::after {
content: 'Created by Atanas Atanasov <github.com/scriptex>.';
}
head::before {
content: 'There are six text elements on this page.';
}
head::after {
content: 'This is just a proof that you don\'t need HTML to code websites.';
}
body::before {
content: 'It\'s a completely responsive webpage.';
}
body::after {
content: 'Use CMD + Alt + U (or CTRL + U) to see the source of the page.';
}
</style>