-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·82 lines (75 loc) · 2.8 KB
/
index.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Practice Page</title>
<link rel="stylesheet" href="dist/css/bootstrap.css">
<link rel="stylesheet" href="dist/css/uxframework-teal.css">
</head>
<body>
<div class="navbar navbar-inverse">
<div class="navbar-header">
<button data-target="#example-navbar-2" data-toggle="collapse" type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<ul class="nav navbar-nav">
<li><a href="index.html" class="navbar-brand diagonal"><span class="uxf-icon uxf-chart-pie"></span></a></li>
<li>
<div class="navbar-brand product-name">
<div class="pq-logo"></div>
<a href="#">Practice Prototype</a></div>
</li>
</ul>
</div>
<nav id="example-navbar-1" role="navigation" class="collapse navbar-collapse bs-navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown">Dropdown<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Option 1</a></li>
<li><a href="#">Option 2</a></li>
</ul>
</li>
</ul>
</nav>
<nav id="example-navbar-2" role="navigation" class="collapse navbar-collapse bs-navbar-collapse">
<div class="nav navbar-nav navbar-below">
<ul class="nav navbar-nav">
<li><a href="#">Option 1</a></li>
<li><a href="#">Option 2</a></li>
<li><a href="#">Option 3</a></li>
<li><a href="#">Option 4</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Option 5</a></li>
<li><a href="#">Option 6</a></li>
</ul>
</div>
</nav>
</div>
<ol class="breadcrumb">
<li><a href="">Home</a></li>
<li><a href="">Library</a></li>
<li class="active">Data</li>
</ol>
<div class="main">
Welcome to the ProQuest app demo. This is here to show how quickly you could iterate a new application idea. It is filled with pages from pst designs and hacked elements tath can be tested independent of a product. We are constantly looking for feedback and ideas, so please send them our way.
</div>
<br>
<br>
<footer>
<div class="row-fluid">
<div class="col-sm-5 col-md-5 col-lg-3">
<div class="footer-logo img-responsive"></div>
</div>
<div class="col-sm-7 col-md-7 col-lg-9">
<p>ProQuest is commited to empowering researchers and librarians around the world.<br>
Copyright © 2015 ProQuest LLC</p>
</div>
</div>
</footer>
</body>
</html>