-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
34 lines (31 loc) · 1.1 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="./index.css">
<title>StreamingMoon's Page</title>
<link rel="icon" href="./NikoAvatar.jpg" sizes="32x32">
</head>
<body bgcolor="#010409" style="position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);">
<div align="center">
<img id="Avatar" src="./NikoAvatar.jpg" onclick="EnableTypeIn()"/>
</div>
<div align="center">
<input id="Name" value="StreamingMoon" readonly="true"/>
</div>
<div align="center">
<button onclick="MyPage()">My Homepage</button>
</div>
<div align="center">
<button onclick="Doing()">What I'm Doing</button>
</div>
<div align="center">
<button onclick="Detail()">About Me</button>
</div>
</body>
<script type="text/javascript" src="./index.js"></script>
</html>