-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
47 lines (44 loc) · 1.73 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>CONTACT</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/Contact.css">
</head>
<body>
<header>
<h1><a href="./index.html">YUTO YAMAMOTO</a></h1>
<nav>
<ul>
<li><a href="./About.html">ABOUT</a></li>
<li><a href="./Contact.html">CONTACT</a></li>
<li><a href="./Function-List.html">FUNCTIONS LIST</a></li>
</ul>
</nav>
</header>
<div class="contact">
<h1 class="contact-ttl">CONTACT</h1>
<form action="">
<table class="contact-table">
<tr>
<th class="contact-item">Name</th>
<td class="contact-body"><input type="Text" name="Name" class="form-text"></td>
</tr>
<tr>
<th class="contact-item">Mail Address</th>
<td class="contact-body"><input type="email" name="Mail Address" class="form-text" /></td>
</tr>
<tr>
<th class="contact-item">Message</th>
<td class="contact-body"><textarea name="Message" class="form-textarea"></textarea></td>
</tr>
</table>
<input class="contact-submit" type="submit" value="SUBMIT" />
</form>
</div>
<footer id="footer">
<p>© YUTO YAMAMOTO</p>
</footer>
</body>
</html>