-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.03 KB
/
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
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color Fliiper</title>
<link href="style/main.css" rel="stylesheet">
</head>
<body>
<div class="nav">
<div class="logo">
color flipper
</div>
<div class="color-box">
<div class="item item-simple">simple</div>
<div class="item item-hex">hex</div>
</div>
</div>
<div class="alert-box">
<h2 class="alert">Choice Simple or Hex</h2>
</div>
<div class="main">
<div class="container">
<h2 class="background-font">background color :
<span class="color-name">#F1F5F8</span>
</h2>
<button class="change-btn">click me</button>
</div>
</div>
<script src="script/main.js"></script>
</body>
</html>