-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (91 loc) · 3.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="robots" content="noindex" />
<link rel="stylesheet" href="style/style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,700"
rel="stylesheet"
/>
<link
rel="icon"
href="/images/PortfolioIcon.png"
type="png"
sizes="16x16"
/>
<title>History of Games</title>
</head>
<body id="bodyEl">
<video autoplay loop muted id="myVideo">
<source src="images/Fog - 23496.mp4" type="video/mp4" />
<!-- this imaage will be displayed if the video tag is broken -->
</video>
<div class="grid">
<div class="header">
<header>
<h1><span>A</span>ssignment <span>2</span></h1>
</header>
</div>
<div class="nav">
<nav>
<ul id="navBar">
<li>
<a class="hrefLink" href="references.html"
>References</a
>
</li>
<li>
<a class="hrefLink" href="group.html">Group</a>
</li>
<li>
<a class="hrefLink" href="structuralElements.html"
>Structural Elements</a
>
</li>
<li>
<a class="hrefLink" href="lenses.html">Lenses</a>
</li>
<li>
<a class="hrefLink" href="whyRE4.html"
>Impact of Resident Evil 4</a
>
</li>
<li><a class="hrefLink" href="#">Home</a></li>
</ul>
</nav>
</div>
<main class="mainIndex">
<div class="paragCenterIndex">
<p>
This is an in depth analysys of
<a href="https://www.residentevil.com/4/"
>Resident Evil 4</a
>
using the lenses of
<a
href="https://www.amazon.ca/gp/product/1138632058?pf_rd_r=G6GCDENJ7XCBRTXVN2K1&pf_rd_p=05326fd5-c43e-4948-99b1-a65b129fdd73"
>The Art of Game Design</a
>
from the author
<a href="https://en.wikipedia.org/wiki/Jesse_Schell"
>Jesse Schell</a
>
</p>
</div>
</main>
<div class="footer">
<footer></footer>
</div>
</div>
<script src="portifolio.js"></script>
</body>
</html>