-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 914 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
<!-- Enter your HTML code here -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Buttons Grid</title>
<link rel="stylesheet" href="./public/css/buttonsGrid.css"></link>
</head>
<body>
<header>
<div style="display:flex;justify-content: space-between;">
<h1 style="font-family:Courier; color: white">10 Days of JS</h1>
<img src="https://hrcdn.net/hackerrank/assets/brand/logo-new-white-green-2c9c8c292fa40bd4042799e6817e74d6.svg" alt="hackerrank logo">
</div>
</header>
<main>
<section>
<h1 style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;">
Clicking on the number 5 moves <br>the button around it clockwise
</h1>
</section>
<div id="btns" class="buttons"></div>
</main>
<script src="./public/js/buttonsGrid.js"></script>
</body>
</html>