-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest0205_02.html
More file actions
65 lines (63 loc) · 2.83 KB
/
test0205_02.html
File metadata and controls
65 lines (63 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h2>SEARCH</h2>
<table style="width:100%">
<tr>
<th style="width:25%"></th>
<th style="width:50%"><input type="text" size="35">
<button>SEARCH</button></th>
<th style="width:25%"></th>
</tr>
</table>
<h6>이름순 | 평점순 | 공유군</h6>
<table style="width:100%">
<thead>
<tr>
<th style="width:25%; padding:20px;">사진</th>
<th style="width:50%;">이름 및 위치</th>
<th style="width:25%;">평점 및 공유</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="https://pbcruise.com/wpPB/wp-content/uploads/2022/06/220318_Guiana-Highlands_01-e1654479067861.jpg">
<td style="margin:auto; text-align:center;">
<p><h2>지구의 보물</h2>
<h4>지구 어딘가 > 좋은곳</h4></p>
<p>18억년전의 지구의 모습을 간직한 지구 최후의 비경이라 불리는 기아나 고지.
끝없이 펼쳐진 정글과 보는 이를 압도하게 하는 바위산들의 기아나
고지는 방문객의 상상을 아득하게 뛰어넘는 장소입니다.</p>
</td>
<td style="margin:auto; text-align:center;">
<p>평점 : 4/5점</p>
<button>공유하기</button><br>
<button>추천하기</button>
</td>
</tr>
<tr>
<td><img src="https://t1.daumcdn.net/thumb/R720x0/?fname=http://t1.daumcdn.net/brunch/service/user/2D9/image/0JT3KMQDlzZ_Ze66crZPbANacCg.jpg"></td>
<td style="margin:auto; text-align:center;">
<p><h2>지구의 보물</h2>
<h4>지구 어딘가 > 좋은곳</h4></p>
<p>세계 최대의 소금 사막, 우유니.
지각 변동으로 솟아오른 바다가 오랜 세월에 걸쳐 증발하면서 지금의 거대한 소금 사막이 됐다.
하늘과 땅의 경계가 사라지는 이곳은 ‘세상에서 가장 큰 거울’이라고도 불린다. </p>
</td>
<td style="margin:auto; text-align:center;">
<p>평점 : 4/5점</p>
<button>공유하기</button><br>
<button>추천하기</button>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</body>
</html>