-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcredit.html
41 lines (36 loc) · 1.78 KB
/
credit.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-default" id="green-navbar">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li><a href="./">Home</a></li>
<li><a href="story.html">Story</a></li>
<li><a href="credit.html">Credit</a></li>
</ul>
</div>
</nav>
<!-- MAIN TEXT HERE -->
<!-- <div class="text-box col-sm-12 col-md-6">
<h1>Cyberpunk Street Scene</h1>
<p>Experimenting with code from <a href="http://blog.palominolabs.com/2012/10/18/side-scrolling-parallax-background-effect-using-only-css3/index.html">Side-Scrolling Parallax Background Effect Using Only CSS3</a> and <a href="https://codepen.io/rachelnabors/pen/AvGhp">Parallax backgrounds with walk cycle</a>
</p>
<p>
<small>Credit: Artwork created by Luis Zuno (@ansimuz) under a <a href="http://creativecommons.org/licenses/by/3.0/">CC-BY-3.0 License</a></small>
</p>
<p>
<small>Font "Square" by <a href="https://joebrogers.itch.io/square">Joeb Rogers</a> under a <a href="https://itch.io/game-assets/assets-cc4-by-nd">CC-BY-ND License</a></small>
</p>
</div> -->
<!-- PARALLAX BACKGROUNDS -->
<div class="foreground" style="background: url('img/country-platform-forest.png') 0 100% repeat-x; background-size: contain;"></div>
<div class="background" style="background: url('img/country-platform-back.png') 0 100% repeat-x; background-size: cover;">
</div>
</body>
</html>