-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
88 lines (85 loc) · 4.59 KB
/
Copy pathcontact.html
File metadata and controls
88 lines (85 loc) · 4.59 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
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang = "ja">
<head>
<meta charset="UTF-8">
<title>WCBcafe - CONTACT</title>
<meta name="description" content="ブレンドコーヒーとヘルシーなオーガニックフードを提供するカフェ">
<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.main.css">
<link href="https://fonts.googleapis.com/css?family=Philosopher" rel ="stylesheet" >
<link href="css/style.css" rel ="stylesheet" >
<link rel="icon" type="image/png" href="images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="contact" class="big-bd">
<header class="page-header wrapper">
<h1><a href="index.html"><img class="logo" src="images/logo.svg" alt="WBCカフェホーム"></a></h1>
<nav>
<ul class="main-nav">
<li><a href="news.html">News</a></li>
<li><a href="menu.html">Memu</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="wrapper">
<h2 class="page-title">Contafct</h2>
<form action="#">
<div>
<label for="name">お名前</label>
<input type="text" id="name" name="your-name">
</div>
<div>
<label for="email">メールアドレス</label>
<input type="email" id="email" name="your-email">
</div>
<div>
<label for="message">メッセージ</label>
<textarea id="message" name="your-message"></textarea>
</div>
<input type="submit" class="button" value="送信">
</form>
</div>
</div>
<section id="location">
<div class="wrapper">
<div class="location-info">
<h3 class="sub-title">カフェ 東駅前店</h3>
<p>
住所:東京都○○区<br>
○○○○○○<br>
○○○○<br>
電話:090-0000-0000<br>
営業時間: 10:00~18:00<br>
休日:水曜
</p>
</div>
<div class="location-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d6488.0111344681445!2d139.7215087290985!3d35.60292924935773!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x60188a9ad3f42559%3A0x84e4c9119c2db2bb!2z6KW_5aSn5LqV6aeF!5e0!3m2!1sja!2sjp!4v1589460463684!5m2!1sja!2sjp" width="800" height="400" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</section>
<section id="sns">
<div class="wrapper">
<div class="sns-box">
<h3 class="sub-title">Facebook</h3>
<iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Ffacebook&tabs=timeline&width=340&height=315&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="340" height="315" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
</div>
<div class="sns-box">
<h3 class="sub-title">Twitter</h3>
<a class="twitter-timeline" data-height="315" data-dnt="true" href="https://twitter.com/pigeonholesort?ref_src=twsrc%5Etfw">Tweets by pigeonholesort</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="sns-box">
<h3 class="sub-title">Youtube</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/rQWhvGbf2Ys" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</section>
<footer>
<div class="wrapper">
<p><small>$copy; 2019 Manabox</small></p>
</div>
</footer>
</body>
</html>