forked from StopWarKr/stopwar_frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modal.html
104 lines (104 loc) · 3.94 KB
/
modal.html
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
<!DOCTYPE html>
<html lang="ko">
<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" />
<title></title>
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/font.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/media_query.css" />
</head>
<body>
<div class="modal-background">
<section class="sponsor" id="sponsor">
<h2>후원정보</h2>
<button class="btn-close">
<img src="./image/btn-close.png" alt="창 닫기" />
</button>
<ul class="sponsor-list">
<li>
<a
href="https://overseas.mofa.go.kr/ua-ko/index.do"
class="sponsor-card first"
target="_blank"
>
<div class="sponsor-detail">
<h3>주한우크라이나 대사관</h3>
<p>하나은행 /우크라이나대사관</p>
<p>174-910024-87105</p>
</div>
</a>
</li>
<li>
<a
href="https://ko.airbnb.org/help-ukraine"
class="sponsor-card"
target="_blank"
>
<img src="./image/airbnd.svg" alt="에어비앤비" />
<div class="sponsor-detail">
<h3>에어비엔비</h3>
<p>피란민 호스팅</p>
</div>
</a>
</li>
<li>
<a
href="https://www.unhcr.or.kr/ukraine-emergency/?utm_source=facebook&utm_medium=social&utm_campaign=KR_PS_KO_UA_banner__ukraine%7Cretargetlookalike%7Cimagea%7Ccc&&utm_content=RF1202539&fbclid=IwAR2TR_6a6tyyatwoMu4RgOOycSVYTwiIQZQOTJJGmWlodEhdcPU42SPmxGg"
class="sponsor-card"
target="_blank"
>
<img src="./image/un.svg" alt="유엔" />
<div class="sponsor-detail">
<h3>유엔난민기구</h3>
<p>우크라이나 긴급구호</p>
</div>
</a>
</li>
<li>
<a
href="https://help.unicef.org/gao/ukraine-emergency?language=en"
class="sponsor-card"
target="_blank"
>
<img src="./image/unicef.svg" alt="유니세프" />
<div class="sponsor-detail">
<h3>유니세프 글로벌</h3>
<p>우크라이나 어린이 돕기</p>
</div>
</a>
</li>
<li class="sponsor-item">
<a
href="https://www.sc.or.kr/participate/campaignView.do?NO=29049&utm_source=google_pc&utm_medium=paid_search&utm_campaign=sa&utm_content=%EC%9A%B0%ED%81%AC%EB%9D%BC%EC%9D%B4%EB%82%98&utm_term=%5B%EC%9A%B0%ED%81%AC%EB%9D%BC%EC%9D%B4%EB%82%98%EC%A0%84%EC%9F%81%ED%9B%84%EC%9B%90%5D&gclid=CjwKCAiA1JGRBhBSEiwAxXblwQDct4VcqQKKsXApujZyHP82xzjrLNZznbWOOrFPmJoQGVCIuTBZKRoCk9gQAvD_BwE"
class="sponsor-card"
target="_blank"
>
<img src="./image/savethechild.svg" alt="세이브더칠드런" />
<div class="sponsor-detail">
<h3>세이브더칠드런</h3>
<p>우크라이나 긴급구호</p>
</div>
</a>
</li>
<li class="sponsor-item">
<a
href="https://www.redcross.ch/en"
class="sponsor-card"
target="_blank"
>
<img src="./image/swisscross.svg" alt="스위스적십자" />
<div class="sponsor-detail">
<h3>스위스 적십자</h3>
<p>우크라이나 비상 키트 돕기</p>
</div>
</a>
</li>
</ul>
</section>
</div>
<!-- <script type="module" src="./js/index.js"></script> -->
</body>
</html>