-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<lang ="ja">
<html>
<head>
<meta charset="UTF-8" />
<meta name="description" content="登録" />
<meta viewport="width=device-width, initial-scale=1.0" />
<title>登録</title>
<link rel="stylesheet" href="header.css" />
<link rel="stylesheet" href="signup.css" />
<link rel="stylesheet" href="action/action.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<p>とうろく</p>
</header>
<main>
<h5>なまえをいれてね</h5>
<div class="nameForm">
<input type="text" id="name" placeholder="名前" />
</div>
<br>
<br>
<button id="doneButton" class="roundedButton">登録</button>
</main>
<script src="signup.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</body>
</html>
</lang>