-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
56 lines (51 loc) · 2.05 KB
/
contact.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="description" content="猫好きによる猫好きのためのWebサイト">
<title>love cat - contact</title>
<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css">
<link href="https://fonts.googleapis.com/css?family=Philosopher" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link rel="icon" type="img/png" href="images/for favicon.png">
</head>
<body>
<div id="contact" class="big-bg">
<header class="page-header wrapper">
<h1><a href="index.html"><img class="logo" src="images/animal lovers-logos.jpeg" alt="To animal lovers ホーム"></a></h1>
<nav>
<ul class="main-nav">
<li><a href="index.html">ホーム</a></li>
<li><a href="news.html">ニュース</a></li>
<li><a href="search.html">検索</a></li>
<li><a href="contact.html">お問い合わせ</a></li>
</ul>
</nav>
</header>
</div><!-- /#home -->
<footer>
<div class="wrapper">
<h2 class="page-title">contact</h2>
<from action="#">
<div class="Form">
<div class="Form-Item">
<p class="Form-Item-Label"><span class="Form-Item-Label-Required">必須</span>氏名</p>
<input type="text" class="Form-Item-Input" placeholder="例)山田太郎">
</div>
<div class="Form-Item">
<p class="Form-Item-Label"><span class="Form-Item-Label-Required">必須</span>メールアドレス</p>
<input type="email" class="Form-Item-Input" placeholder="例)[email protected]">
</div>
<div class="Form-Item">
<p class="Form-Item-Label isMsg"><span class="Form-Item-Label-Required">必須</span>お問い合わせ内容</p>
<textarea class="Form-Item-Textarea"></textarea>
</div>
<input type="submit" class="Form-Btn" value="送信する">
</div>
</from>
<p><small>© 2021 SakuraInoue</small></p>
</div>
</footer>
</body>
</html>