-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (75 loc) · 3.1 KB
/
Copy pathindex.html
File metadata and controls
79 lines (75 loc) · 3.1 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
<!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="keywords" content="David, Cool, The Best!" />
<meta name="description" content="My website is so cool!" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="header.css" />
<link rel="stylesheet" href="CSSfiles/style.css" />
<link rel="shortcut icon" href="image/D.png" type="image/x-icon" />
<title>Home Page</title>
</head>
<body>
<header>
<div class="navbar">
<div class="logo"><a href="index.html">DevColaDavid</a></div>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<a href="Quiz/quiz.html" class="action_btn">Play</a>
<div class="toggle_btn">
<i class="fa-solid fa-bars"></i>
</div>
</div>
<div class="dropdown_menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="Quiz/quiz.html">MathStudy</a></li>
<li><a href="Quiz/quiz.html" class="action_btn">D</a></li>
</div>
</header>
<main>
<section class="intro">
<h1>👋 Hello! 👋</h1>
<p class="Text1">
<p class="Text1"> am student of University of Laboratory School.</p>
<p class="Text1">I am very into Robotics and Mathmatics.</p>
<p class="Text1">I have competed in multiple comeptitons. Mostly Mathcounts, AMC, and V5RC.</p>
<p class="Text1">if you want to know more about me click find more.</p>
<a href="about.html" class="homepage_action_btn">Find more</a>
</section>
<section class=outreach>
<h1>Outreaching</h1>
<p class="Text1">
This is new educational software that will change Hawaii.</p>
<p class="Text1">using this webstie they will get free mathmatic education from anywhere for free! (I mean who don't like free?).</p>
<p class="Text1">Click play to start playing! 😀</p>
<a href="Quiz/quiz.html" class="homepage_action_btn">Play</a>
</section>
</main>
<script>
const toggleBtn = document.querySelector(".toggle_btn");
const toggleBtnIcon = document.querySelector(".toggle_btn i");
const dropDownMenu = document.querySelector(".dropdown_menu");
toggleBtn.onclick = function () {
dropDownMenu.classList.toggle("open");
const isOpen = dropDownMenu.classList.contains("open");
toggleBtnIcon.classList = isOpen
? "fa-solid fa-xmark"
: "fa-solid fa-bars";
};
</script>
</body>
</html>