-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.29 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<link rel="stylesheet" href="Css/Home.css">
<link rel="stylesheet" href="Css/font-awesome.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap">
</head>
<body>
<!-- Start Home-->
<div class="homeCont" id="home">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="HTML/About.html" target="_blank">About</a></li>
<li><a href="HTML/Gallery.html" target="_blank">Gallery</a></li>
<li><a href="HTML/Quiz.html" target="_blank">Quiz</a></li>
<li><a href="HTML/Form.html" target="_blank">Form</a></li>
<li><a href="HTML/MemoryGame.html" target="_blank">Game</a></li>
</ul>
<div class="header">
<img src="Images/Home/header3.jpg" id="image">
</div>
<h2 id="guestName"></h2>
<div id="clock"></div>
<div class="buttons">
<button id="blue" onclick="color(event)">Blue</button>
<button id="brown" onclick="color(event)">Brown</button>
<button id="random" onclick="color(event)">Random Color</button>
</div>
</div>
<!-- End Home -->
<script src="JS/Home.js"></script>
</body>
</html>