-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (42 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm " style="background:#01796F">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-light" href="#" style="font-weight:bold; font-size:25px; background:#01796F">Discussion Portal</a>
</li>
</ul>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-5" style="background:#D3D3D3; height:540px ">
<div class="row p-3 bg-light" >
<form class="form-inline">
<button type="button" class="btn btn-primary mr-3" id="newQues">New Question Form</button>
<input type="text" class="form-control " id="search">
</form>
</div>
<div style="height:70%">
<!-- list of question -->
<ul id="addList" class="p-2" style="list-style-type:none; width:100%; ">
</ul>
</div>
</div>
<div class="col-7 p-5 " id="right">
<!--right data -->
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>