-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefult.html
22 lines (22 loc) · 910 Bytes
/
defult.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>タイトルタブ</title>
<style>
</style>
</head>
<body>
<div style="margin: 50px 0px 0px 50px;">
<h1>タイトル</h1>
</div>
<br>
<p style="text-align: center; background-color: gray; border-radius: 30px; margin: 0px 600px; padding: 100px 0px;">
概要
</p>
<div style="text-align: center;">
<button onclick="location.href='login.html'" id="Login" style="position: relative; top: 50px; background-color: bisque; border-radius: 10px; font-size: 30px">ログイン</button>
<button onclick="location.href='register.html'" id="Register" style="position: relative; top: 50px; background-color: bisque; border-radius: 10px; font-size: 30px">新規会員登録</button>
</div>
</body>
</html>