-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwishlist.html
105 lines (97 loc) · 5.5 KB
/
wishlist.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
<!DOCTYPE html>
<html>
<head>
<title>Raspberry Roll</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="styles.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Domine" rel="stylesheet">
</head>
<body>
<div class="container">
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<div class="navbar-brand">R&r</div>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#header-nav-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="header-nav-collapse">
<ul class="nav navbar-nav">
<li><a href="home.html">Retrospective</a></li>
<li class="active"><a href="wishlist.html">Wishlist</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container">
<div class="content">
<div class="row">
<div class="wishitem col-sm-6">
<img class="wishitem-img" src="imgs/cookservedelicious2-edit.png">
<div class="wishitem-text">
<h1>Cook, Serve, Delicious! 2!!</h1>
<span class="subtitle">EVEN MORE SCREAMING</span>
<ul class="links">
<li><a href="http://www.cookservedelicious.com/main/">Official website</a></li>
<li><a href="http://store.steampowered.com/app/386620/">Steam</a></li>
</ul>
</div>
</div>
<div class="wishitem col-sm-6">
<img class="wishitem-img" src="imgs/dishonored2-concept-small.jpg">
<div class="wishitem-text">
<h1>Dishonored 2</h1>
<span class="subtitle">I'm waiting for a sale (sorry)</span>
<ul class="links">
<li><a href="https://dishonored.bethesda.net/">Official website</a></li>
<li><a href="http://store.steampowered.com/app/403640/">Steam</a></li>
</ul>
</div>
</div>
<div class="wishitem col-sm-6">
<img class="wishitem-img" src="imgs/hiddenfolks.gif">
<div class="wishitem-text">
<h1>Hidden Folks</h1>
<span class="subtitle">Where's Waldo for the 21st century</span>
<ul class="links">
<li><a href="http://hiddenfolks.com/">Official website</a></li>
<li><a href="http://store.steampowered.com/app/435400/">Steam</a></li>
</ul>
</div>
</div>
<div class="wishitem col-sm-6">
<img class="wishitem-img" src="imgs/superhot-small.jpg">
<div class="wishitem-text">
<h1>Superhot</h1>
<span class="subtitle">A stylish FPS where time only moves if you move</span>
<ul class="links">
<li><a href="https://superhotgame.com">Official website</a></li>
<li><a href="http://store.steampowered.com/app/322500/">Steam</a></li>
</ul>
</div>
</div>
<div class="wishitem col-sm-6">
<img class="wishitem-img" src="imgs/thewitness-small.jpg">
<div class="wishitem-text">
<h1>The Witness</h1>
<span class="subtitle">Puzzle game of 2016, apparently</span>
<ul class="links">
<li><a href="http://the-witness.net/">Official website</a></li>
<li><a href="http://store.steampowered.com/app/210970/">Steam</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>