-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompany.html
More file actions
80 lines (66 loc) · 2.04 KB
/
company.html
File metadata and controls
80 lines (66 loc) · 2.04 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
80
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="utf-8" />
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/company.css">
<link rel="stylesheet" href="./css/normalize.css">
<title>株式会社DIVE</title>
</head>
<body>
<div class="container">
<header class="header clearfix">
<a href="index.html">
<img src="./images/logo.png" alt="" 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 class="image_area" src="./images/company.png" alt="">
<div class="wrapper clearfix">
<aside class="side_menu">
<nav>
<ul>
<li><a href="business.html">事業内容</a></li>
<li class="point"><a href="company.html">会社概要</a></li>
<li><a href="contact.html">お問い合わせ</a></li>
</ul>
</nav>
</aside>
<article class="content">
<table class="company">
<tr>
<th>商号</th>
<td>株式会社DIVE</td>
</tr>
<tr>
<th>所在地</th>
<td>〒111-1111 東京都渋谷区</td>
</tr>
<tr>
<th>設立年月日</th>
<td>2015年1月1日</td>
</tr>
<tr>
<th>資本金</th>
<td>200万円</td>
</tr>
<tr>
<th>従業員</th>
<td>10名</td>
</tr>
</table>
</article>
</div>
<footer class="footer">
<p>Copyright © 2018 DIVE INC All RIGHTS RESERVED.</p>
</footer>
</div>
</body>
</html>