-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (138 loc) · 5.57 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>CAPSTONE-MODULE-1</title>
</head>
<body>
<div id="mobile-nav" class="mobile-navbar hidden">
<i id="close-menu" class="fa fa-times fa-1x" aria-hidden="true"></i>
<ul class="mobile-nav-items">
<li><a class="mobile-nav-item" href="index.html">Home</a></li>
<li><a class="mobile-nav-item" href="about.html">About</a></li>
<li><a class="mobile-nav-item" href="">Program</a></li>
<li><a class="mobile-nav-item" href="">Join</a></li>
<li><a class="mobile-nav-item" href="">Sponser</a></li>
<li><a class="mobile-nav-item" href="">News</a></li>
</ul>
</div>
<div class="main-image">
<div class="social-link-container">
<ul class="social-links">
<i class="fa fa-facebook-square" aria-hidden="true"></i>
<i class="fa fa-twitter" aria-hidden="true"></i>
<i>English</i>
<li>My Page</li>
<li>Login</li>
</ul>
</div>
<nav>
<div class="navbar-desktop">
<a href="index.html" class="logo-desktop">WDE <br>2022</a>
<div class="nav-list">
</li><a class="nav-item-list" href="about.html">About</a></li>
</li><a class="nav-item-list" href="">Program</a></li>
</li><a class="nav-item-list" href="">Join</a></li>
</li><a class="nav-item-list" href="">Sponsor</a></li>
</li><a class="nav-item-list" href="">News</a></li>
<li><button class="nav-btn">WDE Camping</button></li>
</div>
</div>
<div id="humburger-btn" class="humburger">
<div class="humburger-btn">
<a><img src="img/mobile_menu.png" alt=""></a>
</div>
</div>
</nav>
<header>
<div class="main-title">
<div class="header-title">
<span class="header-span">"Hello! Learners"</span>
<h1 class="header-h1">Web Development Live Event</h1>
</div>
<div class="text-message">
<p class="message">A inspring even for any developers who are seeking to expand thier knowledge in the field of web developments</p>
</div>
<div class="location">
<div class="dateinfo">
<p>2022.10.15(SAT) ~ 16(SUN)</p>
<p>@PrettyCool Iraq,Erbil</p>
</div>
</div>
</div>
</header>
</div>
<section class="main-program">
<div>
<h1 class="head-title">Main Program</h1>
</div>
<div class="line"></div>
<div class="programs-container">
<div class="program">
<img src="./img/program_icon_01.png" alt="">
<h3>lectures</h3>
<p>Diverse speakers talking about the Web Development.</p>
</div>
<div class="program">
<img src="./img/program_icon_02.png" alt="">
<h3>Exhibitions</h3>
<p>Diverse speakers talking about the Web Development.</p>
</div>
<div class="program">
<img src="./img/program_icon_03.png" alt="">
<h3>Forum</h3>
<p>Diverse speakers talking about the Web Development.</p>
</div>
<div class="program">
<img src="./img/program_icon_04.png" alt="">
<h3>lectures</h3>
<p>Diverse speakers talking about the Web Development.</p>
</div>
<div class="program">
<img src="./img/program_icon_05.png" alt="">
<h3>lectures</h3>
<p>Diverse speakers talking about the Web Development.</p>
</div>
</div>
<a href="#" class="see-program-btn">Join PrettyCool Event on November - 2022</a>
</section>
<section class="speakers-container">
<h2 class="speakers-title">Feauters Speakers</h2>
<div class="line"></div>
<div id="speakers-con" class="speakers">
</div>
<div class="btn-speakers">
<button id="speaker-btn-more" class="show-more-btn">
MORE
<span class="fa fa-angle-down" aria-hidden="true"></span>
</button>
<button id="speaker-btn-less" class="show-less-btn hidden ">
Less
<span class="fa fa-angle-up" aria-hidden="true"></span>
</button>
</div>
</section>
<section class="partner-container">
<div class="partner-title">
<h2 class="partners-h2">Partners</h2>
<div class="line"></div>
</div>
<div class="partners">
<p>Recoded</p>
<p>Microverse</p>
<p>Wecoded</p>
<p>FreeCodeCamp</p>
<p>Recoded</p>
</div>
</section>
<footer>
<p>"WDE"<br>"2022"</p>
<small>@2022 WDE</small>
</footer>
<script src="main.js"></script>
</body>
</html>