-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (116 loc) · 4.94 KB
/
index.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!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">
<title>Capstone-Project</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="mobile.css">
<link rel="stylesheet" href="desktop.css">
</head>
<body>
<main>
<header class="header">
<div class="top">
<a href="https://www.facebook.com/" class="facebook"><i class="fa-brands fa-facebook"></i></a>
<a href="https://twitter.com/twitterhandle" class="twitter"><i class="fa-brands fa-twitter"></i></a>
<ul class="content">
<li>English</li>
<li>MyPage</li>
<li>Logout</li>
</ul>
</div>
<nav>
<a class="logo" href="./index.html"><img src="./images/CC_Global_Summit_2015 logo.png" alt="img"></a>
<ul class="desktop-ul">
<li class="desktop-link"><a href="./about.html" class="nav-bar">About</a></li>
<li class="desktop-link"><a href="#">Program</a></li>
<li class="desktop-link"><a href="#">Join</a></li>
<li class="desktop-link"><a href="#">Sponser</a></li>
<li class="desktop-link"><a href="#">News</a></li>
<li class="desktop-link"><a href="#" class="nav">CC Compaign</a></li>
</ul>
<div class="menu-icon">
<div class="item-closed"><a href="#" class="closing"><i class="fa fa-times" aria-hidden="true"></i></a>
</div>
<div class="mobile-nav"><a href="./index.html" class="closing">Home</a></div>
<div class="mobile-nav"><a href="./about.html" class="closing">About</a></div>
<div class="mobile-nav"><a href="#" class="closing">Join</a></div>
</div>
<div class="item-menu"><a href="#" class="openMenu"><i class="fa fa-bars"></i></a></div>
</nav>
</header>
<section class="home-page">
<p class="heading">"Hello! Sharing World"</p>
<h1 class="big-heading">CREATIVE COMMONS GLOBAL SUMMIT 2015</h1>
<p class="para">A joyful celebration believing in the value of openness and sharing, creating
a positive change with people from over 80 countries is taking place in October, in Korea.</p>
<p class="date">2015.10.15(Thu) ~ 16(Fri)</p>
<p class="location">@ National Museum of Korea, Art Center Nabi and more</p>
</section>
<section class="about">
<h2 class="about-section">Main Program</h2>
<hr>
<div class="about-container">
<div class="list-item">
<div class="image"><img src="./images/diversity_2_FILL0_wght400_GRAD0_opsz48.svg" alt="img"></div>
<h3>Lecture</h3>
<p class="graph">Listen to the speakers from various countries about the messages of sharing and opening.</p>
</div>
<div class="list-item">
<div class="image"><img src="./images/desktop_windows_FILL0_wght400_GRAD0_opsz48.svg" alt="img"></div>
<h3>CC Exhibition</h3>
<p class="graph">Appreciate various creations applying CC license of artists, organized from Art Center Nabi.</p>
</div>
<div class="list-item">
<div class="image"><img src="./images/forum_FILL0_wght400_GRAD0_opsz48.svg" alt="img"></div>
<h3>Forum</h3>
<p class="graph">Have the time to share your thoughts and opinions with experts for each topic.</p>
</div>
<div class="list-item">
<div class="image"><img src="./images/home_repair_service_FILL0_wght400_GRAD0_opsz48.svg" alt="img"></div>
<h3>Workshop</h3>
<p class="graph">Try creating your own work using open source license rather than just watching at it.</p>
</div>
<div class="list-item">
<div class="image"><img src="./images/hub_FILL0_wght400_GRAD0_opsz48.svg" alt="img"></div>
<h3>CC Ignite</h3>
<p class="graph">Get opportunities to network with CC affiliates around the world, also after the summit.</p>
</div>
</div>
<div class="end"><u>See the whole Program</u></div>
<button class="button">Join CC Global Summit 2015</button>
</section>
<section class="featured" id="featured-page"></section>
<footer class="footer-page">
<div class="top">
<h3 class="about-title-1">Partner</h3>
<hr>
<ul class="partners">
<li>Mozilla</li>
<li>Google</li>
<li>NAVAR</li>
<li>daumkakao</li>
<li>airbnb</li>
</ul>
</div>
<div class="bottom">
<div class="nav-logo">
<a href="./index.html">
<img src="./images/creative common korea footer logo.png" alt="logo"/></a>
</div>
<div class="rights">
<p>
© 2023 Creative Commons Korea. Some Rights Reserved. CCC
</p>
</div>
</div>
</footer>
</main>
<script src="./js/main.js"></script>
<script src="./js/script.js"></script>
</body>
</html>