-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.html
More file actions
29 lines (29 loc) · 1.28 KB
/
grid.html
File metadata and controls
29 lines (29 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./grid.css"/>
<title>Document</title>
</head>
<body>
<!--두 div에 동시에 넣기 위해서 부모div태그를 넣는다-->
<div id="grid">
<div>NAVIGATION</div>
<!--
디자인을 위해서 아무 목적없는 tag가 필요할 때가 있다
=> 이럴 때 사용되는 태그: <div>, <span>
<div> - block level element
<span> - inline element
두 display에 따른 차이에 따라 사용되는 용도가 달라진다
-->
<div>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
</body>
</html>