-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (107 loc) · 5.21 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
119
120
121
122
<!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" href="style.css">
<script src="./script.js" defer></script>
<title>Capstone Project</title>
</head>
<body>
<!-- Header -->
<header class="the-header">
<ul class="header-list-container">
<li class="header-list"><a href="#" class="link-header"><img class="main-header" src="./images/facebook.png" alt="Facebook Web" ></a></li>
<li class="header-list"><a href="#" class="link-header"><img class="main-header" src="./images/twitter.png" alt="Twitter Web" ></a></li>
<li class="header-list"><a class="link-header" href="./index.html">English</a></li>
<li class="header-list"><a class="link-header" href="./index.html">My Page</a></li>
<li class="header-list"><a class="link-header" href="./index.html">Logout</a></li>
</ul>
</header>
<!-- Navbar -->
<nav class="navbar">
<a href="./index.html" class="link-home"><img class="main-logo" id="logo-navbar" src="./images/logo3.svg" alt="Coin Telegraph Web" ></a>
<ul class="menu">
<li class="list1"><a class="link1" href="./index.html">Home</a></li>
<li class="list1"><a class="link1" href="./about.html">About</a></li>
</ul>
<div class="hamburger">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
</nav>
<!-- main -->
<main class="program-description">
<p class="previous-title">"Get your Crypto Game ON"</p>
<h1 class="main-title">
CRYTO CONGRESS <br> GLOBAL SUMMIT <br> 2022
</h1>
<p class="description1">Crypto Congress is back for its third edition on 15 October 2022 and once again will be hosted online with controversial speakers and discussions. The event will be a festive gathering of 2,500+ attendees, uniting entrepreneurs, traders, investors, developers, industry enthusiasts, among others, with a jam-packed day with exciting keynotes, workshops, presentations, contentious topics, product exhibitions, competitions and entertainment.</p>
<p class="dates">2022.10.15(THU) ~ 16(FRI)</p>
<p class="direction">@ Radisson Hotel, Nevada, Unites States</p>
</main>
<!-- program section -->
<section class="program-section">
<h2 class="title2">
Main Cryptos
</h2>
<div class="card-container">
<div class="card-program">
<img src="./images/currencies/bitcoin.png" alt="Bitcoin cryptocurrency" class="icon-coin">
<h3 class="coin">Bitcoin</h3>
<p class="des-coin">Bitcoin is regarded as the first decentralized cryptocurrency using blockchain technology.</p>
</div>
<div class="card-program">
<img src="./images/currencies/etherium.png" alt="Etherium cryptocurrency" class="icon-coin">
<h3 class="coin">Etherium</h3>
<p class="des-coin"> Ethereum is a platform that uses blockchain tech to enable the creation of smart contracts.</p>
</div>
<div class="card-program">
<img src="./images/currencies/litecoin.png" alt="Litecoin cryptocurrency" class="icon-coin">
<h3 class="coin">Litecoin</h3>
<p class="des-coin">Litecoin is a peer-to-peer cryptocurrency released under the MIT/X11 license.</p>
</div>
<div class="card-program">
<img src="./images/currencies/cardano.png" alt="Cardano cryptocurrency" class="icon-coin">
<h3 class="coin">Cardano</h3>
<p class="des-coin">Cardano is a public blockchain platform. It is open-source and decentralized</p>
</div>
<div class="card-program">
<img src="./images/currencies/dogecoin.png" alt="Dogecoin cryptocurrency" class="icon-coin">
<h3 class="coin">Dogecoin</h3>
<p class="des-coin">Originally made as a joke poking fun of rampant speculation on cryptocurrencies.</p>
</div>
</div>
<div class="button-cta">
<a id="cta" href="#" class="join">Join cryptocurrency summit 2022</a>
</div>
</section>
<!-- speaker section -->
<section class="speakers">
<h2 class="featured-speakers">Featured Speaker</h2>
<div class="card-speaker-container">
</div>
<button class="show-more">MORE</button>
</section>
<!-- partner sections -->
<section class="partner-section partner-section-home">
<h3 class="title-partner">Partner</h3>
<div class="companies company1">
<img src="./images/partners/google400.png" alt="Google company" class="company-logo">
<img src="./images/partners/mozilla400.png" alt="Mozilla company" class="company-logo">
<img src="./images/partners/twitter.png" alt="Twitter company" class="company-logo">
<img src="./images/partners/meta.png" alt="Meta company" class="company-logo">
<img src="./images/partners/tesla.png" alt="Tesla company" class="company-logo">
</div>
</section>
<footer class="the-footer">
<img src="./images/logo3.svg" alt="Coin Telegraph web" class="main-logo" id="footer-logo">
<div class="des-footer">
<p class="detail-footer">2022 Coin Telegraph.</p>
<p class="detail-footer">@ All Rights Reserved. Making the world smarter, happier, and richer.</p>
</div>
</footer>
</body>
</html>