-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.08 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.08 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Demo Site</title>
<link rel="stylesheet" type="text/css" href="css/mobile.css">
<link rel="stylesheet" media="only screen and (min-width:720px)" href="css/desktop.css">
</head>
<body>
<div class="container">
<header>
<h1 id="myHeading">My Demo Site</h1>
</header>
<div class="main">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="exchangeRate.html">Exchange Calculator</a></li>
<li><a href="aboutUs.html">About Us</a></li>
</ul>
</nav>
<div class="content">
<h2>Rotating Images</h2>
<p>
<img src="" alt="Winter Gardens" id="myImages">
</p>
<p>
Change Background colour: <span class="red colPicker">Red</span>, <span class="green colPicker">Green</span>, <span class="blue colPicker">Blue</span>,
<span class="reset colPicker">Default</span></p>
<p id="myTestEvent">Test Event</p>
</div>
</div>
<footer>
© 2020 mustbebuilt
</footer>
</div>
</body>
</html>