-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInquiry.html
More file actions
60 lines (60 loc) · 2.86 KB
/
Inquiry.html
File metadata and controls
60 lines (60 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inquiry</title>
<link href="./css/style.css" rel="stylesheet">
<link rel="icon" type="image/png" href="./Images/Travel.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Gasoek+One&display=swap" rel="stylesheet">
</head>
<body>
<div id = "inquiry">
<header class="page-header wrapper">
<a href="./index.html"><img class ='logo' src="./Images/webIcon.png" alt="아이콘"><span>SeasonFestival</span></a>
<nav>
<ul class="nav">
<li><a href="Search.html">Search</a></li>
<li><a href="Match.html">Match</a></li>
<li><a href="Inquiry.html">Inquiry</a></li>
<li><a href="Login.html">Login</a></li>
</ul>
</nav>
</header>
<div class="inquiry-content wrapper">
<h1>문의하기</h1>
<div style="margin-top: 60px;">
<div class="inquiry-item">
<span>이메일</span>
<br>
<input type="email">
</div>
<div class="inquiry-item">
<span>제목</span>
<br>
<input type="text">
</div>
<div class="inquiry-item">
<span>내용</span>
<br>
<input type="text" id="input-content">
</div>
</div>
<div class="input-button">
<input type="file">
<button class="button">문의하기</button>
</div>
<div class="sns">
<div class="sns-item">
<h2>Facebook</h2>
<iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fhufspr%2F%3Flocale%3Dko_KR&tabs=timeline&width=500&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="500" height="500" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe> </div>
<div class="sns-item">
<h2>Twitter</h2>
<a class="twitter-timeline" data-width="500" data-height="500" href="https://twitter.com/hellopolicy?ref_src=twsrc%5Etfw">Tweets by hellopolicy</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</body>
</html>