-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure_1.html
More file actions
34 lines (34 loc) · 1.2 KB
/
structure_1.html
File metadata and controls
34 lines (34 loc) · 1.2 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible", content="IE-edge">
<title>Structure | JSProject</title>
<link rel="stylesheet", href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet", href="css/style.css">
<style>
section {border: 2px solid black; margin: 4rem auto; text-align: center; width: 50%; padding: 2rem;}
div {margin: 4rem; border: 1px solid black; padding: 2rem;}
h1 {font-size: 30px;}
p {font-size: 30px; padding-top: 10px;}
#sec1, #sec2, #sec3 {display: none;}
</style>
</head>
<body>
<header>
</header>
<main>
<section>
<button onClick="favouriteColour()", style="padding: 1rem 2rem;">Click me</button>
<div>
<p id="p1">Text to be changed.</p>
</div>
</section>
</main>
<footer>
</footer>
<script src="js/script_1.js">
</script>
</body>
</html>