-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (103 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Web developer course</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="style.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/0007bfca3c.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav class="top-nav">
<ul class="top-menu">
<li><i class="fab fa-facebook-f"></i></li>
<li><i class="fab fa-twitter"></i></li>
<li>English</li>
<li>My Page</li>
<li>Logout</li>
</ul>
</nav>
<nav class="bottom-menu">
<button class="openIcon" aria-label="Navigation button"><i class="fas fa-bars fa-2x"></i></button>
<div class="logo-container">
<a href="index.html">
<img class="logo-image" src="assets/copyrightLogo.png" alt="logo copyright">
</a>
</div>
<ul class="nav-menu">
<li><a href="about.html">About</a></li>
<li><a>Artist</a></li>
<li><a>Join</a></li>
<li><a>Schedule</a></li>
<li><a>News</a></li>
<li><button>Register now</button></li>
<li class="closeIcon">
<a>X</a>
</li>
</ul>
</nav>
</header>
<main id="home">
<section class="introduction">
<div class="intro-header">
<h5>"Hello! New students, welcome!"</h5>
<h1>New global registrations available for our 2021 online program</h1>
<p>A new program designed to teach you from A to Z, more than 2,000 spots for global students.The only course you need to learn web development - HTML, CSS, JS, Node, and More! Join Millions of Learners From Around The World Already Learning On WEbDev</p>
</div>
<div class="intro-content">
<h2>2021.11.01(WED) ~ 15(FRI)</h2>
<p>@ your own house, you can register from our webpage!</p>
</div>
</section>
<section class="main-section">
<h3>Main Program</h3>
<div class="main-title"></div>
<div class="main-content">
<ul>
<li><i class="fab fa-html5 fa-2x"></i></li>
<li class="main-headers"><h4>Html5</h4></li>
<li><p>HTML is the standard markup language for Web pages. With HTML you can create your own Website.</p></li>
</ul>
<ul>
<li><i class="fab fa-css3 fa-2x"></i></li>
<li class="main-headers"><h4>CSS3</h4></li>
<li><p>CSS stands for Cascading Style Sheets. CSS describes how HTML elements are to be displayed</p></li>
</ul>
<ul>
<li><i class="fab fa-bootstrap fa-2x"></i></li>
<li class="main-headers"><h4>bootstrap</h4></li>
<li><p>Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites.</p></li>
</ul>
<ul>
<li><i class="fab fa-js fa-2x"></i></li>
<li class="main-headers"><h4>javaScript</h4></li>
<li><p>JavaScript is the Programming Language for the Web. JavaScript can update and change both HTML and CSS.</p></li>
</ul>
<ul>
<li><i class="fab fa-node fa-2x"></i></li>
<li class="main-headers"><h4>Node.Js</h4></li>
<li><p>Node.js is an open source server environment. Node.js allows you to run JavaScript on the server.</p></li>
</ul>
</div>
<button class="join">Join our 2021 online Program</button>
</section>
<section class="featured-speakers">
<h3>Featured Speakers</h3>
<div class="main-title"></div>
<div class="speakers-container">
</div>
<div class="more">
<p>MORE</p>
<i class="fas fa-chevron-down"></i>
</div>
</section>
</main>
<script src="nav.js"></script>
<script src="speakers.js"></script>
</body>
</html>