-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
171 lines (151 loc) · 4.8 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="application-name" content="SASSCAPE ROOM" />
<meta name="author" content="@daimessdn (Dimas Wihandono)" />
<meta
name="description"
content="SASSCAPE ROOM is a web-based escape room game using Sass"
/>
<meta
name="keywords"
content="web-based game, escape room, html, sass, no javascript"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="SASSCAPE ROOM" />
<meta
property="og:description"
content="SASSCAPE ROOM is a web-based escape room game using Sass"
/>
<meta
property="og:url"
content="https://daimessdn.github.io/sasscape-room"
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/daimessdn/sasscape-room/master/assets/share/facebook-banner.png"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@daimessdn" />
<meta name="twitter:title" content="SASSCAPE ROOM" />
<meta
name="twitter:description"
content="Web-based escape room game using Sass."
/>
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/daimessdn/sasscape-room/master/assets/share/twitter-banner.png"
/>
<title>SASSCAPE ROOM</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="dist/css/landing.css" />
<link rel="stylesheet" href="src/css/paths.css" />
</head>
<body>
<nav>
<ul>
<li>
<a class="action-btn" href="#home">Home</a>
</li>
<li>
<a class="action-btn" href="#about">About</a>
</li>
<li>
<a
class="action-btn"
href="https://github.com/daimessdn/sasscape-room"
target="blank"
rel="nofollow"
><i class="fab fa-github"></i
></a>
</li>
</ul>
</nav>
<header id="home">
<div class="container container-flex">
<h1>
Are you ready for<br />
<span class="brand"><i class="fab fa-sass"></i>-cape?</span>
</h1>
<h2>
Explore more rooms <i class="fas fa-door-open"></i> and items
<i class="fas fa-key"></i> to escape.
</h2>
<img src="assets/landing/demo.gif" alt="SASSCAPE ROOM demo" />
<p>
<a href="game.html" class="action-btn"
>I'm ready for <i class="fab fa-sass"></i>-cape!</a
>
<a href="#about" class="action-btn">Learn more</a>
</p>
</div>
</header>
<main>
<section id="about">
<div class="container container-flex">
<h2>About SASSCAPE ROOM</h2>
<img
id="demo-image"
src="assets/landing/demo2.gif"
alt="another SASSCAPE ROOM demo"
/>
<p>
<strong>SASSCAPE ROOM</strong> brings you to explore more rooms and
items to solve the puzzle to escape. There are so many rooms, items,
and also documents you can explore.
</p>
<a href="game.html" class="action-btn"
>I'm ready for <i class="fab fa-sass"></i>-cape!</a
>
<div id="box-playground"></div>
</div>
</section>
</main>
<footer>
<div>
<p>
Code with <i class="fab fa-sass"></i> (Sass)<br />and also
<i class="fas fa-heart"></i> by daimessdn 👋
</p>
<p>
In order to participate in
<a href="https://mintbean.io" target="_blank">Mintbean</a> Hackathon.
Why don't you also
<a href="https://mintbean.io" target="_blank">join</a>?
</p>
</div>
<div>
Reach me on<br />
<ul class="social-media-footer">
<li>
<a href="https://www.github.com/daimessdn" target="_blank"
><i class="fab fa-github"></i
></a>
</li>
<li>
<a href="https://www.twitter.com/daimessdn" target="_blank"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a href="https://www.linkedin.com/in/dimaswehhh" target="_blank"
><i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a href="mailto:daimessdn@gmail.com" target="_blank"
><i class="fas fa-envelope"></i
></a>
</li>
</ul>
</div>
</footer>
</body>
</html>