-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 899 Bytes
/
index.html
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
<!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">
<title>Ice-Creme Maker</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="heading"><h1 class="head" style="color: white;">Ice-Creme Maker</h1></div>
<div class="layer">
<div id="rect-1"></div>
<div id="rect-2"></div>
<div id="rect-3"></div>
<div id="rect-4"></div>
<div id="rect-5"></div>
<div id="rect-6"></div>
<div class="triangle">
</div>
<div class="buton">
<button id="increment" type="button">Add Layer</button>
<button id="decrement" type="button">Delete Layer</button></div>
</div>
<script src="script.js"></script>
</body>
</html>