-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
113 lines (111 loc) · 3.35 KB
/
links.html
File metadata and controls
113 lines (111 loc) · 3.35 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
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
<html>
<header>
<meta charset="UTF-8">
<title>わんの家</title>
<style>
/*back*/
body {
background-color: #eeeeee;
}
/*text*/
.centered {
position: absolute;
left: 30%;
transform: translateX(-30%);
}
p {
margin-bottom: -1rem;
}
.b1 {
margin-top: 25px;
display: block;
}
/*color*/
.col1 {
color: #dd00dd;
}
/*style*/
.youtube-button {
background-color: #ff0000;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
text-decoration: none;
left: 90%;
}
.youtube-button:hover {
background-color: #bb0000;
}
.x-button {
display: inline-block;
background-color: #444;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
text-decoration: none;
}
.x-button:hover {
background-color: #333;
}
.footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #222;
color: white;
padding: 20px;
text-align: center;
}
/*menu*/
.menu {
list-style-type: none;
margin: 0;
padding: 0;
background-color: #333;
overflow: hidden;
}
.menu li {
float: left;
}
.menu li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.menu li a:hover {
background-color: #555;
}
/*etc..*/
</style>
</header>
<body>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="storage.html">Storage</a></li>
<li><a herf="#links">Links</a></li>
</ul>
<dev class="centered">
<h1 id="links">Link集</h1>
<br>
<p>SNS:</p><br>
<a href="https://x.com/wancoro110">X</a><br>
<a href="https://discord.com/users/834571373480378379">Discord</a><br>
<a href="https://youtube.com/@inucodayo">Youtube</a><br>
<a href="https://bsky.app/profile/wancoro1.bsky.social">BlueSky</a><br>
<p>game:</p><br>
<a href="https://vrchat.com/home/user/usr_82281a82-b02c-4b7e-adac-b5b49ef8ef82">VRChat</a><br>
<a href="https://steamcommunity.com/id/wancoro1105/">steam</a><br>
<p>more:</p><br>
<a href="https://github.com/wancor1">GitHub</a><br>
<div style="height: 100px;"></div>
</body>
</html>