-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (109 loc) · 4.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>MWC Barcelona</title>
</head>
<body>
<header class="firstPage">
<nav id="firstDesktopNav">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://github.com/algerina">My Page</a>
<a href="#">Logout</a>
</nav>
<nav class="secondDesktopNav">
<a href=""><img src="./img/logo4.png" alt=""></a>
<a href="./about.html">About</a>
<a href="#">Program</a>
<a href="">Join</a>
<a href="">Sponsor</a>
<a href="./index.html">Home</a>
</nav>
<!--mobile navbar-->
<section class="mobile-nav">
<nav id="mobileSidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" id="close-btn">X</a>
<a href="about.html">About</a>
<a href="#">Program</a>
<a href="#">Join</a>
<a href="#">Sponsor</a>
<a href="#">News</a>
</nav>
<div id="main">
<button class="openbtn" id="open-btn">☰</button>
</div>
</section>
<section class="firstSection">
<div>
<p class="hello">"HELLO CONNECTED WORLD!"</p>
<h1>CONNECTIVITY IS UNLEASHED AT MWC BARCELONA 2022</h1>
<p class="sectionText">MWC Barcelona is the world’s most influential event for the connectivity
industry. It’s where <br>
world-leading companies and trailblazers share the latest thought leadership about the
progression and future of connectivity. And it’s the best place for networking opportunities <br>
with mobile and tech industry influencers.</p>
<h3>Barcelona Spain <br>
28 February – 3 March 2022</h3>
</div>
</section>
</header>
<section class="secondSection">
<h2>Main Program</h2>
<div class="mainContainer deskContainer">
<div class="spaceSpeacker spacedesk">
<img class="icon" src="./img/icon1.png" alt="speackersicon">
<span class="programTitle">Speackers</span>
<p class="programP">It’s where world-leading companies and trailblazers share the latest thought
leadership.
</div>
<div class="spaceSpeacker spacedesk">
<img class="icon" src="./img/exhibitionicon.png" alt="exhibitionicon">
<span class="programTitle">Exhibition</span>
<p class="programP"> It is the place to be seen, exhibit ground-breaking products and technologies,
and make remarkable connections.</p>
</div>
<div class="spaceSpeacker spacedesk">
<img class="icon" src="./img/forumicon.png" alt="">
<span class="programTitle">Forum</span>
<p class="programP">Get ready to explore, debate and connect with creators, and innovators in the
industry. </p>
</div>
<div class="spaceSpeacker spacedesk">
<img class="icon" src="./img/workshopicon.png" alt="">
<span class="programTitle">Workshop</span>
<p class="programP">Whether you’re launching a new product or looking for partners to bring future
innovations to life.</p>
</div>
</div>
<button class="programbtn">Become an Exhibitor</button>
</section>
<section class="speackersPage">
<div class="container">
<div>
<h2 class="featured">Featured Speackers</h2>
</div>
<div class="speackersContainer" id="speackersContainer"></div>
</div>
</section>
<section class="partnersection">
<h2 class="partnertext">Partners</h2>
<div class="partners">
<img class="partnericon" src="./img/sponsor1.jpg" alt="">
<img class="partnericon" src="./img/logospnsor2.png" alt="">
<img class="partnericon" src="./img/logosponsor4.png" alt="">
<img class="partnericon" src="./img/logosponsor5.png" alt="">
<img class="partnericon" src="./img/logosponsor6.png" alt="">
</div>
</section>
<footer>
<img src="./img/logo3.png" alt="">
<p>GSMA logoLegal© Copyright 2021 GSM Association.</p>
</footer>
<script src="./script.js"></script>
</body>
</html>