-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
69 lines (66 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Shin">
<meta name="robots" content="index, follow">
<meta name="description" content="This is Shin' s personal website">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap" rel="stylesheet">
<!-- CSS Link -->
<link rel="stylesheet" href="./style/main.css">
<title>聯絡方式 | Shin Front End Developer</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">首頁</a></li>
<li><a href="./resume.html">我的履歷</a></li>
<li><a class="active" href="#">聯絡方式</a></li>
<li><a href="./project.html">Project</a></li>
</ul>
</nav>
</header>
<main>
<section class="form">
<form action="">
<div><label for="name">姓名 :</label>
<input type="text" name="name" value="請輸入姓名">
</div>
<div><label for="phone">電話 :</label>
<input type="text" name="phone" value="請輸入電話">
</div>
<div><label for="e-mail">郵件 :</label>
<input type="text" name="e-mail" value="請輸入信箱">
</div>
<div><label for="need">需求 :</label>
<textarea name="need" id="" cols="30" rows="10"></textarea>
</div>
<button type="submit">提交表單</button>
</form>
</section>
<div class="line"></div>
<section class="contact">
<div class="content">
<h2>Phone : +886 XXX XXX XXX</h2>
<h2>E - mail : [email protected]</h2>
</div>
</section>
</main>
<footer>
<a href="https://www.facebook.com/profile.php?id=100003228495833">
<img src="./ICONS/facebook.svg" alt="facebook" title="facebook">
</a>
<a href="https://www.instagram.com/shin_0113_/">
<img src="./ICONS/instagram.svg" alt="instagram" title="instagram">
</a>
<a href="https://github.com/a5512167086">
<img src="./ICONS/github-brands 1.svg" alt="github" title="github">
</a>
</footer>
</body>
</html>