-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.47 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
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form class="form" name="contact" method="POST">
<div class="form-item">
<p class="form-item-label">
<span class="form-item-label-required">必須</span>会社名
</p>
<input type="text" class="form-item-input" placeholder="例)株式会社estra">
</div>
<div class="form-item">
<p class="form-item-label"><span class="form-item-label-required">必須</span>氏名</p>
<input type="text" class="form-item-input" placeholder="例)山田太郎">
</div>
<div class="form-item">
<p class="form-item-label"><span class="form-item-label-required">必須</span>電話番号</p>
<input type="text" class="form-item-input" placeholder="例)090-1234-5678">
</div>
<div class="form-item">
<p class="form-item-label"><span class="form-item-label-required">必須</span>メールアドレス</p>
<input type="email" class="form-item-input" placeholder="例)[email protected]">
</div>
<div class="form-item">
<p class="form-item-label"><span class="form-item-label-required">必須</span>お問い合わせ内容</p>
<textarea class="form-item-textarea"></textarea>
</div>
<input type="submit" class="form-btn" value="送信する">
</form>
</body>
</html>