-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenemies.html
More file actions
67 lines (64 loc) · 3.07 KB
/
enemies.html
File metadata and controls
67 lines (64 loc) · 3.07 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link href="css/enemies.css" rel="stylesheet">
<title> Enemies </title>
</head>
<body>
<div id="header">
<img src="img/logo.png" class="logo" />
<div class="navbar">
<a id="home" href="home.html">home</a>
<div class="dropdown">
<a id="game" class="dropbtn">game</a>
<div id="gameDrop" class="dropdown-content">
<a href="whatIsRate.html">what is rate</a>
<a href="howToPlay.html">how to play</a>
<a href="gameModes.html">game modes</a>
</div>
</div>
<div class="dropdown">
<a id="universe" class="dropbtn">universe</a>
<div id="universeDrop" class="dropdown-content">
<a href="map.html">map</a>
<a href="#adventurers">adventurers</a>
<a id="items" href="items.html">items</a>
<a id="enemies" href="enemies.html">enemies</a>
</div>
</div>
<div class="dropdown">
<a id="stats" class="dropbtn">stats</a>
<div id="statsDrop" class="dropdown-content">
<a href="leaderboardAdventurers.html">leaderboard adventurers</a>
<a href="#schools">leaderboard schools</a>
<a id="search" href="search.html">search</a>
</div>
</div>
<a id="support" href="support.html">support</a>
<a id="login" href="login.html">login</a>
<a id="playnow" href="playnow.html">play now</a>
</div>
<hr>
</div>
<div id="daniContent">
<div id="daniContainer">
<div id=writableArea>
<div class="buttons">
<button id="demons">Demons</button>
<button id="beasts">Beasts</button>
<button id="orcs">Orcs</button>
<button>Undead</button>
</div>
<h1>Orcs</h1>
<p>
<img src="img/ork.jpg" class="leftImage">
Opinions in the world of rate vary from topic to topic. Pretty much everyone has his own stand on the varying subjects like politics, science and craftmanship. However there's only one thing that every sane person in Rate agrees upon: Orcs - more precisely - if you see one - STAY OUT OF HIS WAY! That is of, course, you aren't one of the folks who enjoy being turned into human broth once in a while.
<br><br>
These vicious creatures are famous for their immense brute force, mastercrafted weapons and armor and their thirst for blood. But unlike beasts of the same level of physical prowess these renowed warriors have advanced intellect, much nearing the one of a human, making them one of deadliest creatures you can(pray not to!) encounter while adventuring around the world.
</p>
</div>
</div>
</div>
</body>
</html>