-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathabout.html
More file actions
103 lines (99 loc) · 4.01 KB
/
about.html
File metadata and controls
103 lines (99 loc) · 4.01 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html>
<head>
<title>About</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<style type="text/css">
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><b>etherparty</b></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="#">Home</a>
</li>
<li class="active">
<a href="#about">About</a>
</li>
<li>
<a href="#contact">Contact Engine</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Explorer<br><b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="#">Find Contract</a>
</li>
<li>
<a href="#">API</a>
</li>
<li>
<a href="#">Wiki</a>
</li>
<li class="divider"></li>
<li class="dropdown-header">Resources</li>
<li>
<a href="#">Documentation</a>
</li>
<li>
<a href="#">Release Notes</a>
</li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-right">
<div class="form-group"></div>
<span class="badge"> XCP / BTC: </span>
<div class="form-group">
<span class="badge">Current Fuel Price: 2 XCP</span>
</div>
</form>
</div>
<!--/.navbar-collapse -->
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<hr>
<section>
<div class="well">
<header>
<h1>about etherparty</h1>
</header>
</div>
</section>
<section>
<div class="well">
<p><strong style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans; font-size: 11px; line-height: 14px; text-align: justify;">Lorem Ipsum</strong><span style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans; font-size: 11px; line-height: 14px; text-align: justify;" class="text-right"> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</span></p>
</div>
</section>
<div class="media">
<a class="pull-left" href="#"></a>
</div>
<ul class="list-group">
<li class="list-group-item">Vision</li>
<li class="list-group-item">Goals</li>
<li class="list-group-item">Obstacles</li>
</ul>
<hr>
<footer>
<p style>© etherparty 2014</p>
</footer>
</div>
<!-- /container -->
</body>