-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcover.html
72 lines (51 loc) · 1.43 KB
/
cover.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cover</title>
<script type="module" src="./layouts.js"></script>
<style>
cover-layout {
border: 2px solid red;
}
cluster-layout {
border: 2px solid black;
}
h1 {
border: 2px solid green;
}
div p {
border: 2px solid blue;
}
</style>
</head>
<body>
<center-layout>
<cover-layout>
<cluster-layout justify="space-between" align="center">
<box-layout>X</box-layout>
<cluster-layout>
<div><a href="#">About</a></div>
<div><a href="#">Blog</a></div>
<div><a href="#">Shop</a></div>
<div><a href="#">News</a></div>
<div><a href="#">Contact</a></div>
</cluster-layout>
</cluster-layout>
<h1 class="text-align:center">Welcome To My Site, Visitor!</h1>
<div class="font-size:smallish text-align:center">
<p>What I do. <span>⬇</span></p>
</div>
</cover-layout>
</center-layout>
</body>
</body>
</html>
<!-- <style>
/* box-layout {
max-inline-size: min-content;
} */
</style> -->
<!-- <center-layout andText="true"> -->
<!-- <h1>Welcome To My Site, Visitor!</h1> -->
<!-- </center-layout>
-->