-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (40 loc) · 2.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colors</title>
<link rel="manifest" href="/manifest.json">
<link rel="icon" type="image/png" sizes="32x32" href="img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/icons/favicon-16x16.png">
<!-- Materialize template, Then main.js -->
<link rel="stylesheet" href="css/materialize.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- Favicon -->
<meta name="msapplication-TileColor" content="#603cba">
<meta name="theme-color" content="#ffc40f">
<!-- Add iOS meta tags and icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Color PWA">
<link rel="mask-icon" href="img/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="apple-touch-startup-image" href="img/icons/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="apple-touch-icon" href="img/icons/icon-152x152.png">
</head>
<body>
<div class="row cl-items">
<a href="#" class="col s12 waves-effect waves-light btn" onclick="myFunctionRed();" style="background: rgba(255, 0, 0, 0.95);">Red</a>
<a href="#" class="col s12 waves-effect waves-light btn" onclick="myFunctionBlue();" style="background: rgba(50, 150, 220, 0.95);">Blue</a>
<a href="#" class="col s12 waves-effect waves-light btn" onclick="myFunctionGreen();" style="background: rgba(170, 210, 85, 0.95);">Green</a>
<a href="#" class="col s12 waves-effect waves-light btn" onclick="myFunctionOrange();" style="background: rgba(255, 165, 70, 0.95);">Orange</a>
<a href="#" class="col s12 waves-effect waves-light btn" onclick="myFunctionPink();" style="background: rgba(255, 50, 140, 0.95);">Pink</a>
<a href="#" class="col s12 waves-effect waves-light btn" onclick="myFunctionYellow();" style="background: rgba(255, 255, 0, 0.95);">Yellow</a>
</div>
<!-- Compiled and minified JavaScript -->
<script src="js/materialize.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>