-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
48 lines (40 loc) · 1.44 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
<html>
<head>
<title>Online Python Visualizer</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" ></script>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap-modal.js"></script>
</head>
<body>
<body style="background-image: url('http://subtlepatterns.com/patterns/txture.png');">
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Python Web Visualizer</a>
<ul class="nav">
<li>
<a href="index.html">Home</a>
</li>
<li class="active">
<a href="#">About</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container-fluid">
<div class="main-row row-fluid">
<div class="span12">
<div class="hero-unit" style="background-color: transparent; color:white;">
<h1>Online Python Visualizer</h1>
<p>Tagline</p>
Hello Hello
</div>
</div>
</div>
</div>
</body>
</body>
</html>