전준호

responsive design example

1 +<!DOCTYPE html>
2 +<html lang="ko">
3 +<head>
4 + <meta charset="utf-8" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,
5 + user-scalable=0" name="viewport"/>
6 +
7 + <link rel="stylesheet" type="text/css" href="mystyle.css"/>
8 +
9 + <style>
10 +
11 + p.title {
12 + background-color: #F0F;
13 + color: #FFF;
14 + width: 100%;
15 + margin: 10px;
16 + height: 50px;
17 + font-size: 30px;
18 + border-radius: 10px;
19 + text-align: center;
20 + }
21 +
22 + img {
23 + width: 50%;
24 + margin-left: 10px;
25 + }
26 +
27 + ul#member {
28 + width: 50%;
29 + margin-top:0;
30 + }
31 +
32 + ul#member li {
33 + background-color: #a0a0a0;
34 + width: 10%;
35 + margin: 5px;
36 + border-radius: 30px;
37 +
38 + }
39 +
40 + div#greater_content {
41 + width: 50%
42 + }
43 +
44 + div#content {
45 + border-left: 20px #8dc68d solid;
46 + outline: 1px #a0a0a0 solid;
47 + padding: 2px;
48 + width: 40%;
49 + }
50 +
51 + a.album {
52 + text-decoration: none;
53 + }
54 +
55 + li.albumlist {
56 + list-style: none;
57 + float: left;
58 + width: 30%;
59 + height: auto;
60 + margin: 10px;
61 + background-color: #a0a0a0;
62 + text-align: center;
63 + }
64 +
65 + @media screen and (min-width: 1024px) {
66 + img {
67 + width: 20%;
68 + float: left;
69 +
70 + }
71 +
72 + ul#member {
73 + width: 30%;
74 + display: inline-block;
75 + float: left;
76 + }
77 +
78 + div#greater_content {
79 + width: 30%;
80 + display: inline-block;
81 + float: left;
82 + overflow: auto;
83 + }
84 +
85 + }
86 + </style>
87 +</head>
88 +<body>
89 + <p class="title">
90 + 트와이스
91 + </p>
92 +
93 + <img src = "http://cfile30.uf.tistory.com/image/217F5C4B571DEB641CCE7B"/>
94 +
95 + <ul id="member">구성원
96 + <li>지효</li>
97 + <li>나연</li>
98 + <li>정연</li>
99 + <li>모모</li>
100 + <li>사나</li>
101 + <li>미나</li>
102 + <li>다현</li>
103 + <li>채영</li>
104 + <li>쯔위</li>
105 + </ul>
106 +
107 + <div id=greater_content>
108 + <div id="content">
109 + 트와이스(2015년 10월 20일 ~ 현재)는 대한민국의 9인조 걸 그룹이다. 팀명의 의미는 눈으로 한 번, 귀로 한 번 감동을 준다는 뜻이다.
110 + Mnet의 서바이벌 프로그램 SIXTEEN을 통해 멤버를 뽑았으며, 나연, 정연, 모모, 사나, 지효, 미나, 다현, 채영, 쯔위가 선발되어 지금의 트와이스 멤버로 활동하고 있다.
111 + 데뷔년도인 2015년부터 2016년에 걸쳐 엄청난 기록과 폭발적인 성장세를 보이며 대한민국 최고의 아이돌 그룹 중 하나로 자리매김하고 있다.
112 + </div>
113 + </br>
114 + 소속사:
115 + <a href = "http://www.jype.com/common/ArtistMain.aspx?LDiv=">
116 + JYP 엔터테인먼트
117 + </a>
118 + </br>
119 + 앨범
120 + <ul>
121 + <li class="albumlist">
122 + <a class="album" href = "https://ko.wikipedia.org/wiki/THE_STORY_BEGINS">
123 + THE STORY BEGINS
124 + </a>
125 + </li>
126 + <li class="albumlist">
127 + <a class="album" href = "https://ko.wikipedia.org/wiki/PAGE_TWO">
128 + PAGE TWO
129 + </a>
130 + </li>
131 + <li class="albumlist">
132 + <a class="album" href = "https://ko.wikipedia.org/wiki/TWICEcoaster_:_LANE_2">
133 + TWICEcoaster : LANE 1
134 + </a>
135 + </li>
136 + </ul>
137 + </div>
138 +
139 +
140 +
141 +
142 +</body>
143 +</html>