-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstory.html
42 lines (35 loc) · 1.95 KB
/
story.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
<!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-6" style="float: none;">
<h1 style="text-transform: uppercase; background: gray; text-align: center; font-size: 2em;">Story</h1>
<p><span style="font-size: 1.5em;">CodeWritingCow</span> (AKA Gary Pang) builds websites and Web APIs. He learns Web development while juggling a full-time job as a newspaper reporter.</p>
<p>He builds chatbots, too. One bot was powered by a third-party AI API. Unfortunately, Gary had to shut that bot down after it refused to stop making romantic overtures to its creator.</p>
<p class="text-center">
<a href="#" class="btn btn-success">NEXT >></a>
</p>
</div>
<!-- PARALLAX BACKGROUNDS -->
<div class="foreground" style="background: url('img/skill-desc_0000_foreground.png') 0 100% repeat-x; background-size: cover;"></div>
<div class="midground" style="background: url('img/skill-desc_0001_buildings.png') 0 100% repeat-x; background-size: cover;"></div>
<div class="midground" style="background: url('img/skill-desc_0002_far-buildings.png') 0 100% repeat-x; background-size: cover; z-index: 1;"></div>
<div class="background" style="background: url('img/skill-desc_0003_bg.png') 0 100% repeat-x; background-size: cover;">
</div>
</body>
</html>