-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
52 lines (48 loc) · 2.13 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mr Robot | About</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="style.css">
<script="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" type="javascript/text">
</script>
</head>
<body>
<header>
<div>
<a class="headerlogo" href="index.html">
<img src="images/logo.jpg" />
</a>
<span id="headername">Mr. Robot</span>
<input type="text" id="myInput" class="searchbox" placeholder="Search our store" onkeyup="myFunction()"/>
</div>
<nav class="backgroundgradient">
<ul id="myUL">
<li><a class="navlink" href="index.html">Home</a></li>
<li><a class="navlink" href="robots.html">Robots</a></li>
<li><a class="navlink" href="computers.html">Hardware</a></li>
<li><a class="navlink" href="contact.html">Contact</a></li>
<li><a class="navlink" href="about.html">About</a></li>
</ul>
</nav>
</header>
<div id="welcomeimage">
<img class="kiwi" src="images/Mr.-Robot-Welcome.png" alt="About us">
</div>
<legend>Our History</legend>
<fieldset>
<h5>Mr. Robot</h5>
<p> Our goal is to creat the best Robots money can buy.
Elliott Alderson started the company back in 2019 after the crash of evil Corp in order to try and restore order in the world through the helping hands of Robots. Our store is located in downtown Moon City right next to the Cheesecake Factory.<br>
Hope to see you soon!
</p>
</fieldset>
<br>
<footer>
<p>Our address is <address>1011 Crater Ave, Moon City: THE MOON</address></p>
<p class="textcontent">All site contents is copyright <a class="mainlink" href="http://www.mrrobot.com">Mr Robot!</a></p>
<p class="smalltext">This page was generated on <time>09:25:04.123</time>.</p>
</footer>
<script src="script.js"></script>
</body>
</html>