-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
executable file
·35 lines (33 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Space Place</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="home.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-light" style="background-color: #e3f2fd">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="Home.html">Place4Space</a>
</div>
<ul class="nav navbar-nav">
<li><a href="About.html">About</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</nav>
<div class="row">
<div class="col-md-6">
<img src="http://burnsandwhitaker.com/wp-content/uploads/2013/05/Burns-and-whitaker-Professional-Liability-insurance2.jpeg" style="width:768px;height:500px;">
</div>
<div class="col-md-6" style="background-color:white;">
Place4Space is a team of highly trained professionals dedicated to providing you with a reliable server space. Place4Space is proud to boast a 100% uptime over the past 6 months; this efficiency compounded with our superior customer service is what sets us apart from the competition.
</div>
</div>
</body>
</html>