-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebsitePage.html
More file actions
149 lines (148 loc) · 4.97 KB
/
WebsitePage.html
File metadata and controls
149 lines (148 loc) · 4.97 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
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
<!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" />
<title>[] Divisi Website []</title>
<link rel="stylesheet" href="styles.css" />
<script src="script.js" defer></script>
</head>
<body class="division-page">
<nav class="fixed-top">
<div class="nav-menu">
<a class="ul-menu menu">Menu</a>
<ul>
<li>
<a class="ul-menu" href="LandingPage.html">Home</a>
</li>
<li>
<a class="ul-menu" href="#project">Project</a>
</li>
<li>
<a class="ul-menu" href="#join">Join</a>
</li>
<li>
<a class="ul-menu" href="#contact">Contact</a>
</li>
</ul>
</div>
<a class="ul-menu theme-button" onclick="toogleDarkmode()">Dark</a>
</nav>
<header>
<h1>DIVISI WEBSITE</h1>
<div class="arrow-down"></div>
</header>
<main>
<section id="description">
<div class="description-text-container">
<h2>DIVISI WEBSITE</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Beatae vitae consequatur sapiente molestiae distinctio voluptate incidunt nobis hic quod maxime?</p>
</div>
</section>
<section id="lesson">
<h2>MEMPELAJARI</h2>
<div class="flex-lesson">
<div class="HTML">
<p>Lorem ipsum dolor sit amet consectetur adipisicing</p>
</div>
<div class="CSS">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<div class="JS">
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Minima, eum?</p>
</div>
</div>
</section>
<section id="project">
<h2>PROJECT</h2>
<div class="grid-project">
<div class="project-box project-1">
<h3>PROJECT #1</h3>
<p>-Andriana</p>
</div>
<div class="project-box project-2">
<h3>PROJECT #2</h3>
<p>-Haical</p>
</div>
<div class="project-box more-project">
<h3>MORE</h3>
</div>
<div class="project-box project-3">
<h3>PROJECT #3</h3>
<p>-Maulani</p>
</div>
<div class="project-box project-4">
<h3>PROJECT #4</h3>
<p>-Setiawati</p>
</div>
</div>
<div class="arrow-down"></div>
</section>
<section id="join">
<div class="slider">
<img loading="lazy" id="slide1" src="slider/christina-wocintechchat-com-faEfWCdOKIg-unsplash.jpg" alt="unsplash1" />
<img loading="lazy" id="slide2" src="slider/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg" alt="unsplash2" />
<img loading="lazy" id="slide3" src="slider/marvin-meyer-SYTO3xs06fU-unsplash.jpg" alt="unsplash3" />
</div>
<div class="join-us">
<a class="join-button" href="Registration.html">JOIN US</a>
</div>
</section>
</main>
<footer id="contact">
<div class="arrow-up"></div>
<div class="footer-container">
<div class="contact-form">
<h2 class="footer-title">Ask Us</h2>
<form action="">
<table>
<tr>
<td><label for="name">Name</label></td>
<td>:</td>
<td><input id="name" type="text" placeholder="Your name..." required /></td>
</tr>
<tr>
<td><label for="email">Email</label></td>
<td>:</td>
<td><input id="email" type="email" placeholder="YourEmail@Xmail.com" required /></td>
</tr>
<tr>
<td><label for="question">Question</label></td>
<td>:</td>
<td>
<textarea id="question" name="question" id="" cols="24" rows="7" placeholder="How many member you got there?..." required></textarea>
</td>
</tr>
<tr>
<td colspan="3" class="text-align-center">
<button type="submit" name="submit" class="submit-button">SUBMIT</button>
</td>
</tr>
</table>
</form>
</div>
<div class="socmed">
<h2 class="footer-title">Follow Us</h2>
<div class="logo-container">
<div>
<a href="#">
<img src="logos/facebook.png" alt="facebook" />
</a>
</div>
<div>
<a href="#">
<img src="logos/instagram.png" alt="instagram" />
</a>
</div>
<div>
<a href="#">
<img src="logos/twitter.png" alt="twitter" />
</a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>