This repository was archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 3.14 KB
/
Copy pathindex.html
File metadata and controls
73 lines (73 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="main.css" />
<script
src="https://kit.fontawesome.com/4b8b655ba6.js"
crossorigin="anonymous"
></script>
<title>Fanmade | INSIDE</title>
</head>
<body>
<!-- [[ Hero ]] -->
<header class="hero" id="home">
<div class="navbar">
<h1 id="logo"><a href="#home">INSIDE</a></h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#demo">Demo</a></li>
<li>
<a href="https://playdead.com/" target="_blank"
>PLAYDEAD</a
>
</li>
</ul>
</nav>
</div>
<div class="content">
<h2>PlayDead's <span>INSIDE</span></h2>
<a href="#buy"><i class="fa-solid fa-angle-down fa-2x"></i></a>
</div>
</header>
<!-- [[ Main ]] -->
<main>
<section class="about" id="about">
<h2>About</h2>
<p>
<b>INSIDE</b> is a puzzle platform game developed and
published by PLAYDEAD in 2016. The player controls a boy
solving environmental puzzles presented as a 2.5D platform
game and avoiding death. It is the successor to Playdead's
2010 <b>Limbo</b>, with similar 2.5D gameplay
</p>
<h2>GamePlay</h2>
<p>
The game is dark, with color used sparingly to highlight
both the player and certain part of the environment, the
game is mostly silent, with exception of occasional musical
cues, the boy's vocals, dogs barking, equipment and sound
effects. The player controls the boy who walks, runs, swims,
climbs, and uses objects to overcome obstacles and progress
in the game, the boy also gains the ability to control
bodies to complete certain puzzles and the boy can dies in
various ways, such as being shot or mauled by dogs, ensnared
by security machines, blown apart by shockwaves, or drown.
As in the predecessor game <b>Limbo</b>, these deaths are
presented realistically and are often graphic, but to a
larger degree.
</p>
<a
href="https://en.wikipedia.org/wiki/Inside_(video_game)"
target="_blank"
class="btn"
>discover more!</a
>
</section>
</main>
</body>
</html>