-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoiawase_form.html
71 lines (71 loc) · 2.09 KB
/
toiawase_form.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;"charset="UTF-8" />
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/toiawaseform.css">
<title>株式会社DIVE</title>
</head>
<body>
<div class="container">
<header class="header clearfix">
<a href="index.html">
<img src="./images/logo.png" class="logo_image">
</a>
<nav>
<ul class="top_menu clearfix">
<li><a href="index.html">ホーム</a></li>
<li><a href="business.html">事業内容</a></li>
<li><a href="company.html">会社概要</a></li>
<li><a href="contact.html">お問い合わせ</a></li>
</ul>
</nav>
</header>
<img src="./images/contact.png" class="image_area">
<div class="wrapper clearfix">
<aside class="side_menu">
<nav>
<ul>
<li><a href="business.html">事業内容</a></li>
<li><a href="company.html">会社概要</a></li>
<li class="point"><a href="contact.html">お問い合わせ</a></li>
</ul>
</nav>
</aside>
<article class="content">
<form action="">
<table>
<tr>
<th>お名前</th>
<td><input type="text"></td>
</tr>
<tr>
<th>メールアドレス</th>
<td><input type="text"></td>
</tr>
<tr>
<th>性別</th>
<td>
<input type="radio" name="sex" value="male">男
<input type="radio" name="sex" value="female">女
</td>
</tr>
<tr>
<th>お問合わせ内容</th>
<td><textarea name="" id="" cols="80" rows="2"></textarea></td>
</tr>
<tr>
<th>
<td class="submit"><input type="submit" value="送信"></td>
</th>
</tr>
</table>
</form>
</article>
</div>
<footer class="footer">
<p>Copyright © 2018 DIVE INC All RIGHTS RESERVED.</p>
</footer>
</div>
</body>
</html>