-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.06 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=yes,initial-scale=1.0">
<title>SPACE CAFE</title>
<link rel="shortcut icon" href="assets/img/common/favicon.ico">
<link rel="apple-touch-icon" href="assets/img/common/apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/common.css">
<link rel="stylesheet" href="assets/css/top.css">
</head>
<body>
<header class="header">
<h1 class="logo"><img src="assets/img/common/logo.svg" alt="ロゴ"></h1>
<div class="catch-copy"><span>Welcome to Space Cafe</span></div>
</header>
<nav class="globalnav">
<ul class="globalnav-list">
<li><a href="index.html">TOP</a></li>
<li><a href="menu/index.html">MENU</a></li>
<li><a href="access/index.html">ACCESS</a></li>
<li><a href="contact/index.html">CONTACT</a></li>
</ul>
</nav>
<main class="main">
<div class="wrapper">
<div class="lead">
これはダミーです。スペースカフェは、美味しいコーヒーを飲みながら<br>静かな時間を過ごしていただくためのカフェです。
</div>
<div class="img-link-wrap">
<section class="img-link">
<a href="menu/index.html">
<img src="assets/img/top/bg_menu.jpg" alt="メニュー画像">
<h2 class="heading02"><span>MENU</span></h2>
</a>
</section>
<section class="img-link">
<a href="access/index.html">
<img src="assets/img/top/bg_access.jpg" alt="アクセス画像">
<h2 class="heading02"><span>ACCESS</span></h2>
</a>
</section>
</div><!-- img-link-wrap -->
<section>
<h2 class="heading02 heading02-contact"><span>CONTACT</span></h2>
<a href="contact/index.html" class="btn">お問い合わせはこちら</a>
</section>
</div><!-- wrapper -->
</main>
<footer class="footer">
<p class="copy"><small>© SPACE CAFE</small></p>
</footer>
</body>
</html>