-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (96 loc) · 4.14 KB
/
index.html
File metadata and controls
96 lines (96 loc) · 4.14 KB
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
<!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" />
<meta name="description" content="Web Design course for everybody website" />
<meta name="keywords" content="Web,Web Design, course, HTML, CSS, Javascript, ArthurGC, CodeClub" />
<meta name="author" content="Arthur Guzman" />
<link rel="icon" type="image/png" sizes="32x32" href="public/favicon-32x32.svg" />
<script
src="https://kit.fontawesome.com/27e53b408d.js"
crossorigin="anonymous">
</script>
<link rel="stylesheet" href="css/home/home.css" />
<title>Web Design for Everybody: Basics of Web Development and Coding | CodeClub</title>
</head>
<body>
<header>
<nav>
<a href="index.html" class="link"><img src="public/logo.svg" alt="code club icon"></a>
<ul class="menu">
<li>
<a href="about.html" class="link">About</a>
</li>
<li>
<a href="#mainprogram" class="link">Program</a>
</li>
<li>
<a href="#featuredpresenters" class="link">Presenters</a>
</li>
<li class="join-container">
<a href="#" class="link join">Join for Free</a>
</li>
</ul>
<i class="fas fa-bars hamb"></i>
</nav>
</header>
<main>
<section class="headline">
<p class="headline__greet">"Hello World!"</p>
<h1 class="headline__title">Web Design for Everybody: Basics of Web Development and Coding</h1>
<div class="headline__dsc">
<p>Learn to Design and Create Websites. Build a responsive and accessible web portfolio using HTML5, CSS3, and JavaScript.</p>
</div>
<p class="headline__date">2021.07.21(TUE) ~ 22(THU)</p>
</section>
<section class="program" id="mainprogram">
<h2 class="program__title">Main Program</h2>
<hr>
<ul>
<li>
<img src="public/Icon-1.svg" alt="lecture icon">
<h3>Lecture</h3>
<p class="program__p">Start the course and speech about web design.</p>
</li>
<li>
<img src="public/Icon-2.svg" alt="lecture icon">
<h3>First Stage</h3>
<p class="program__p">Start HTML-CSS course using semantic rules.</p>
</li>
<li>
<img src="public/Icon-3.svg" alt="lecture icon">
<h3>Forum</h3>
<p class="program__p">Share your doubts about what you are learning.</p>
</li>
<li>
<img src="public/Icon-2.svg" alt="lecture icon">
<h3>Second Stage</h3>
<p class="program__p">Start the course of JavaScript and Responsive Design</p>
</li>
<li>
<img src="public/Icon-1.svg" alt="lecture icon">
<h3>Closing Party</h3>
<p class="program__p">Closing the course and exchange of opinions.</p>
</li>
</ul>
</section>
<section class="offered">
<h2 class="offered__title">Offered by</h2>
<hr>
<div class="offered__images">
<img class="offered__img" src="public/mezilla.svg" alt="mezilla logo">
<img class="offered__img" src="public/CodeClub.svg" alt="codeclub logo">
<img class="offered__img" src="public/NOVER.svg" alt="nover logo">
<img class="offered__img" src="public/daushCamp.svg" alt="daushcamp logo">
</div>
</section>
<footer>
<img class="footer__img" src="public/logo.svg" alt="codeclub logo">
<p class="footer__p">2021 CodeClub. Some Rights Reserved</p>
</footer>
</main>
<script type="module" src="src/home/home.js"></script>
</body>
</html>