-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameAnalysis.html
65 lines (57 loc) · 2.07 KB
/
GameAnalysis.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
<!DOCTYPE html>
<html>
<head>
<title>The Unknown Game Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="CSS/GeneralStyle.css">
<link rel="stylesheet" type="text/css" href="CSS/AnalysisBlog.css">
</head>
<body>
<header>
<H1><a href="Home.html">The Unknown Game Blog</a></H1>
<nav>
<div class="dropdown">
<div onclick="toggleDropdown()" class="dropbtn"></div>
<ul id="myDropdown" class="dropdown-content">
<li><a href="GameRecommendation.html">Game Recommendation</a></li>
<li><a href="GameAnalysis.html" class="Pressed">Game Analysis</a></li>
<li><a href="CreativityBlog.html">Creativity Blog</a></li>
</ul>
</div>
<ul id="NavBar">
<li><a href="GameRecommendation.html">Game Recommendation</a></li>
<li><a href="GameAnalysis.html" class="Pressed">Game Analysis</a></li>
<li><a href="CreativityBlog.html">Creativity Blog</a></li>
</ul>
</nav>
<script src="js/dropdown.js"></script>
</header>
<main>
<div class="Container">
<!-- A little note that should be pretty small -->
<p class="Note">Trying to strategically analyze games.</p>
<div class="PostContainer">
<img src="Images/ASquare150Inside.jpg">
<a href="GameAnalysis/Analysis1.html"><H2>World Building in INSIDE</H2></a>
<p class="Date">Date: 2018.04.07</p>
</div>
<div class="PostContainer">
<img src="Images/ASquare150Doki.jpg">
<a href="GameAnalysis/Analysis2.html"><H2>Doki Doki Literature Club is an Uncontrollably Horrific Visual Novel</H2></a>
<p class="Date">Date: 2017.10.22</p>
</div>
<div class="PostContainer">
<img src="Images/ASquare150Undertale.png">
<a href="GameAnalysis/Analysis3.html"><H2>Undertale Review</H2></a>
<p class="Date">Date: 2017.08.15</p>
</div>
</div>
</main>
<footer>
<p>This site is a random personal game blog.</p>
<p>Contact: yx1137@nyu.edu</p>
<p>©TheUnknownGameBlog</p>
</footer>
</body>
</html>