-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (46 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset="ucf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HACW News</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-8">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">News Title goes here</h3>
</div><!-- .panel-heading -->
<div class="panel-body bg-info">
<div class="vote">
<span class="glyphicon glyphicon-chevron-up arrow"></span>
30
<span class="glyphicon glyphicon-chevron-down arrow"></span>
</div><!-- .vote -->
<!-- <a href="#" >
<img src="thumbnails/header-logo-thumbnail.png">
</a> -->
<a href="">Comments</a>
</div><!-- .panel-body -->
</div><!-- .panel .panel-default -->
</div><!-- .col-sm-8 -->
<div class="col-sm-4">
<input type="search" placeholder="Search HACW">
<div class="form-group">
<h4>Please log in</h4>
<label for="username" class="label"></label>
<input type="text" class="form-control" id="username" placeholder="Username">
<label for="password" class="label"></label>
<input type="password" class="form-control" id="password" placeholder="Password">
<input class="btn btn-success" type="submit" value="Sing in">
<input class="btn btn-warning" type="reset" value="reset">
</div><!-- .form-group -->
<a href="" class="btn btn-info">Submit a new link</a>
</div><!-- col-sm-4 -->
</div><!-- .row -->
</div><!-- .container -->
</body>