-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 732 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 732 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito">
<script src="main.js"></script>
</head>
<body>
<div class="flexcontainer">
<div class="column" id="col1" style="background-color:#ff7fff;">
<p class="hexlabel">#FF7FFF</p>
</div>
<div class="column" id="col2" style="background-color:#FFB695;">
<p class="hexlabel">#FFB695</p>
</div>
<div class="column" id="col3" style="background-color:#96D1CD;">
<p class="hexlabel">#96D1CD</p>
</div>
<div class="column" id="col4" style="background-color:#ff7fff;">
<p class="hexlabel">#FF7FFF</p>
</div>
</div>
</body>
</html>