-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/reset.css">
</head>
<body>
<div class="form-content-wrapper">
<div class="FormComponent">
<form>
<label for="UserName" class="form-name">名前</label> <br>
<input id="UserName" type="text" placeholder="名前を入力してください" class="write-space"> <br>
<label for="MailAddress" class="form-name">メールアドレス</label> <br>
<input id="MailAddress" type="text" placeholder="メールアドレスを入力してください" class="write-space"> <br>
<label for="inquire" class="form-name">お問い合わせ内容</label> <br>
<textarea id="inquire" class="inquire-space"></textarea> <br>
<input type="submit" value="送信" class="submit-button">
</form>
</div>
</div>
</body>
</html>