-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (119 loc) · 3.42 KB
/
index.html
File metadata and controls
123 lines (119 loc) · 3.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="css/style.css" />
<script src="js/main.js" defer></script>
</head>
<body>
<div class="bg"></div>
<h1><img src="img/logo.png" alt="" /></h1>
<div class="topmenu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Info</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Community</a></li>
<li><a href="#">Contact</a></li>
</ul>
<ul>
<li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-facebook"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-envelope"></i></a>
</li>
</ul>
</div>
<ul class="leftnav">
<li>
<a href="#"><span></span><strong>Player 1</strong></a>
</li>
<li>
<a href="#"><span></span><strong>Player 2</strong></a>
</li>
<li>
<a href="#"><span></span><strong>Player 3</strong></a>
</li>
<li>
<a href="#"><span></span><strong>Player 4</strong></a>
</li>
<li>
<a href="#"><span></span><strong>Player 5</strong></a>
</li>
</ul>
<section>
<!-- 첫번째 컨텐츠 -->
<article>
<img src="img/pic11.png" alt="" class="obj11" />
<img src="img/pic12.png" alt="" class="obj12" />
<img src="img/player1.png" alt="" class="obj13" />
<div>
<h3>Lorem Ipsum</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry.
</p>
</div>
</article>
<!-- 두번째 컨텐츠 -->
<article>
<img src="img/pic21.png" alt="" class="obj21" />
<img src="img/player2.png" alt="" class="obj22" />
<div>
<h3>Lorem Ipsum</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry.
</p>
</div>
</article>
<!-- 세번째 컨텐츠 -->
<article>
<img src="img/pic31.png" alt="" class="obj31" />
<img src="img/player3.png" alt="" class="obj32" />
<div>
<h3>Lorem Ipsum</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry.
</p>
</div>
</article>
<!-- 네번째 컨텐츠 -->
<article>
<img src="img/pic41.png" alt="" class="obj41" />
<img src="img/pic42.png" alt="" class="obj42" />
<img src="img/player4.png" alt="" class="obj43" />
<div>
<h3>Lorem Ipsum</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry.
</p>
</div>
</article>
<!-- 다섯번째 컨텐츠 -->
<article>
<img src="img/pic51.png" alt="" class="obj51" />
<img src="img/pic52.png" alt="" class="obj52" />
<img src="img/player5.png" alt="" class="obj53" />
<div>
<h3>Lorem Ipsum</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry.
</p>
</div>
</article>
</section>
</body>
</html>