forked from DrDru/drdru.github.io_origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnecodesca_home_page.html
78 lines (56 loc) · 1.27 KB
/
necodesca_home_page.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<!-- https://nipponcolors.com/#umenezumi -->
<style>
body {
background-color: lightblue;
font-weight: bold;
font-size: 300%;
margin-left : 10%;
<!-- margin-right : 10%;-->
}
a {
color: black;
text-decoration: none;
}
.logo{
text-align: center;
background-color: white;
border:8px;
border-style:solid;
padding: 20px;
border-radius: 25px;
}
#start_link {
font-size: 100%;
text-align: center;
background-color: white;
border:8px;
border-style:solid;
padding: 15px 50px 15px 50px;
border-radius: 25px;
font-weight: bold;
}
</style>
</head>
<body>
<p><span class="logo">猫Desca?</span></p>
<p>🐱 😸 😹 😻</p>
<ul>
<li><a href="./stories.html">Stories</a></li>
<li><a href="./lab.html">Lab</a></li>
<!--<li><a href="./misc.html">Practice</a></li>
<li><a href="./links.html">Contact</a></li> -->
<li><a href="./about.html">About</a></li>
</ul>
<a id="start_link" href="./stories/intro.html">Start here</a>
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
<script>
twemoji.parse(
document.body,
{ base: 'https://cdn.jsdelivr.net/gh/twitter/[email protected]/assets/' }
)
</script>
</body>