-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnailpicker.html
33 lines (26 loc) · 937 Bytes
/
nailpicker.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
<!DOCTYPE html>
<html>
<head>
<title>Nail Picker</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Website header -->
<div id ="introduction">
<h1>Nail Picker</h1>
<button>About this project</button>
</div>
<!--Getting color input from user-->
<div id = "content">
<!-- 3D nail polish bottle design-->
<iframe src='https://my.spline.design/untitled-8c08a2da8ffb1fe2cd03b20f83b62943/' frameborder='0' width='100%' height='100%'
name ="myIframe"></iframe>
<div id = "form">
<form>
<label for = "Color">Pick a color for your nails:</label>
<input type = "color" name = "Color" id = "Color" value = "#FFA9FE">
</form>
</div>
</div>
</body>
</html>