-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 973 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 973 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
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="es">
<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">
<link rel="stylesheet" href="./css/main.css">
<link rel="icon" type="image/x-icon" href="./img/favicon.svg">
<title>HEXTONE</title>
</head>
<body>
<header class="header">
<h1 class="title">Pick our color</h1>
</header>
<main class="main">
<div class="container__picker">
<input type="color" class="picker" value="#009483">
<p class="text__cta"><i class="icon">◉</i><br>Pick here!</p>
</div>
<section class="container__content">
<h2 class="title__claim">Hextone <i class="icon">♡</i></h2>
<h4 class="output">#009483</h4>
<button class="btn">Copy this</button>
</section>
</main>
<script src="./js/color.js"></script>
</body>
</html>