-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
79 lines (68 loc) · 2.69 KB
/
Copy pathcontact.html
File metadata and controls
79 lines (68 loc) · 2.69 KB
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
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/contact.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 >
<table class="contact">
<tr>
<th>お名前</th><td><input name="user_name" class="fit"></td>
</tr>
<tr>
<th>メールアドレス</th><td><input name="user_mailaddress" class="fit"></td>
</tr>
<tr>
<th>性別</th>
<td>
<input type="radio" name="gender" value="1">男
<input type="radio" name="gender" value="2">女
</td>
</tr>
<tr>
<th>お問い合せ内容</th><td><textarea name="inquiry_details" class="fit"></textarea></td>
</tr>
</table>
<div class="submit"><input type="submit" name="submit" class="submit-btn"></div>
</form>
</article>
</div>
<!--フッター-->
<footer class="footer">
<p>Copylight ©︎ 2018 DIVE INC ALL RIGHT RESERVED.</p>
</footer>
</div>
</body>
</html>