SonGam/HTML_W12
0
1<!DOCTYPE html>
2<html lang="ko">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>문의</title>
7 <link rel="stylesheet" href="style.css">
8</head>
9<body>
10 <header>
11 <h1>문의</h1>
12 <nav>
13 <a href="about.html">홈</a>
14 <a href="index.html">구매</a>
15 <a href="contact.html">문의</a>
16 <a href="project.html">내 페이지</a>
17 </nav>
18 </header>
19 <main>
20 <section class="form-box">
21 <h2>문의</h2>
22 <form>
23 <input type="text" placeholder="닉네임 입력" required />
24 <input type="email" placeholder="이메일 입력" required />
25 <textarea rows="4" placeholder="문의 내용 입력"></textarea>
26 <button type="submit">보내기</button>
27 </form>
28 </section>
29 </main>
30 <footer>
31 © 2025 Uxn.En.Cxn
32 </footer>
33</body>
34</html>