This repository was archived by the owner on Jan 22, 2026. It is now read-only.
forked from justwes2/GcpCaCertProject3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (88 loc) · 1.71 KB
/
index.html
File metadata and controls
94 lines (88 loc) · 1.71 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AppLr</title>
<style>
body {
font-family: helvetica, sans-serif;
margin: 5vw;
/* width: 90vw; */
background-color: teal;
}
.container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
border: 1px solid white;
}
.tile {
height: 100px;
width: 100px;
margin: 3px;
background-color: grey;
border: 1px solid white;
border-radius: 2px;
text-align: center;
display: flex;
justify-content: center;
}
.tile:hover {
color: white
}
</style>
</head>
<body>
<h1>AppLr - The Appiest App that Ever App'ed</h1>
<div class="container">
<div class="tile">
<p>
Disrupt the Paradigm Shift
</p>
</div>
<div class="tile">
<p>
Ideate New Ideas
</p>
</div>
<div class="tile">
<p>
Run with the Unicorns
</p>
</div>
<div class="tile">
<p>
Bleeding Edge without the Bandage
</p>
</div>
<div class="tile">
<p>
Synergy
</p>
</div>
<div class="tile">
<p>
Pivot in a New Direction
</p>
</div>
<div class="tile">
<p>
Preach to the Evangelist
</p>
</div>
<div class="tile">
<p>
Double-Click
</p>
</div>
<div class="tile">
<p>
Amp up your Bandwidth
</p>
</div>
</div>
<script>
</script>
</body>
</html>