-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhtml.txt
83 lines (73 loc) · 2.32 KB
/
html.txt
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
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infostar</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- 헤더 -->
<header>
<div class="logo">Infostar</div>
<div class="header-buttons">
<input type="text" placeholder="Search" class="search-input">
<button class="search-button">Search</button>
<button class="login">LOG IN</button>
<button class="signup">회원가입</button>
</div><br>
<nav>
<a href="#contests">공모전</a>
<a href="#activities">대외활동</a>
<a href="#team">팀 빌딩</a>
</nav>
</header>
<!-- JavaScript 파일 연결 -->
<script src="main.js"></script>
</body>
<!-- 배너 섹션 -->
<section class="banner">
<h1>New Contest</h1>
<p>새로운 도전</p>
</section>
<!-- 인기 공모전 섹션 -->
<section class="popular-contests" id="contests">
<h2>인기 공모전</h2>
<div class="contest-cards">
<div class="contest-card">공모전 1</div>
<div class="contest-card">공모전 2</div>
<div class="contest-card">공모전 3</div>
</div>
</section>
<!-- 마감 임박 섹션 -->
<section class="closing-soon">
<h2>마감 임박</h2>
<ul>
<li>공모전 A - D-3</li>
<li>대외활동 B - D-5</li>
</ul>
</section>
<!-- 인기 대외활동 섹션 -->
<section class="popular-activities" id="activities">
<h2>인기 대외활동</h2>
<div class="activity-cards">
<div class="activity-card">대외활동 1</div>
<div class="activity-card">대외활동 2</div>
<div class="activity-card">대외활동 3</div>
</div>
</section>
<!-- 팀 빌딩 섹션 -->
<section class="team-building">
<h2>팀 빌딩</h2>
<h2>모집중인 팀</h2>
<ul>
<li>팀1 D-4</li>
<li>팀2 D-23</li>
</ul>
</section>
<!-- 푸터 -->
<footer>
<p>Infostar | 공모전과 대외활동을 지금 만나보세요.</p>
</footer>
</body>
</html>