-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·109 lines (98 loc) · 3.61 KB
/
index.html
File metadata and controls
executable file
·109 lines (98 loc) · 3.61 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
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>Main</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="custom.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="col-sm-12">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">TwitterClient</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Messages</a></li>
<li><a href="#">Notifications</a></li>
<li><a href="#">About</a></li>
</ul>
<form class="navbar-form navbar-left">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<ul class="nav navbar-nav navbar-right">
<!-- <li><a href="register.html"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>-->
<li><a href="signin.html"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</nav>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-2">
<div class="panel panel-default">
<div class="panel-heading">Profile</div>
<div class="panel-body">Panel Content</div>
</div>
<!--<div class="classWithPad">Profile</div>-->
</div>
<div class="col-sm-7">
<div class="panel panel-default">
<!--<div class="classWithPad">-->
<div class="panel-heading">Tweets
<div class="container">
<div class="row">
<div class="col-md-6">
</div>
</div>
<div class="row">
<div class="col-sm-3">
<a href="http://www.google.com" class="tile purple">
<h3 class="title"></h3>
<p>Short, sweet data point goes here.</p>
</a>
</div>
<div class="col-sm-3">
<a href="http://www.facebook.com" class="tile orange">
<h3 class="title">Facebook</h3>
<p>Short, sweet data point goes here.</p>
</a>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<a href="http://www.instagram.com" class="tile green">
<h3 class="title">Instagram</h3>
<p>Short, sweet data point goes here.</p>
</a>
</div>
<div class="col-sm-3">
<a href="http://www.youtube.com" class="tile green">
<h3 class="title">Youtube</h3>
<p>Short, sweet data point goes here.</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="panel panel-default">
<div class="panel-heading">Trending Tweets</div>
<div class="panel-body">Panel Content</div>
</div>
<!--<div class="classWithPad">Recent Twitts</div>-->
</div>
</div>
<div>
</body>