-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.43 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.43 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!--
Coding Project One Requirements
- Insert a H1 heading *****
- Insert two H2 headings **
- Include a paragraph ****
- Include an image of GIF ***
- Include an ordered and an unordered list **
-->
<!-- Insert favorite game title here -->
<h1>Overwatch</h1>
<img src="https://vignette.wikia.nocookie.net/overwatch/images/d/dc/Dva_portrait.png/revision/latest/scale-to-width-down/350?cb=20160429040128" alt="Image of D.va from Overwatch">
<p>
In a time of global crisis, an international task force of heroes banded together to restore peace to a war-torn world: OVERWATCH. <br>
Overwatch ended the crisis, and helped maintain peace in the decades that followed, inspiring an era of exploration, innovation, and discovery. <br>
But, after many years, Overwatch’s influence waned, and it was eventually disbanded. <br>
</p>
<h2>Game Features</h2>
<ul>
<li>Multiplayer</li>
<li>Large amount of character to chose from</li>
<li>Fun Events with New Skins</li>
</ul>
<h2>Top Three Played Characters</h2>
<ol>
<li>Orisa</li>
<li>D.va</li>
<li>Symmetra</li>
</ol>
</body>
</html>