-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathhtmlcss.html
More file actions
24 lines (20 loc) · 731 Bytes
/
htmlcss.html
File metadata and controls
24 lines (20 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML & CSS Visualisation Starter</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="../styles/styles.css">
<!-- import the webpage's javascript file -->
<script src="../scripts/htmlvis.js" type="module" defer></script>
</head>
<body class="htmlcss">
<section id="controls">
<button role="switch" data-control="play" data-on="false" aria-pressed="false">Play</button>
</section>
<section id="visual">
</section>
</body>
</html>