-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (157 loc) · 4.84 KB
/
index.html
File metadata and controls
167 lines (157 loc) · 4.84 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://neo4j-documentation.github.io/developer-resources/language-guides/assets/css/main.css">
<title>TeachMe</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</head>
<body>
<div id="graph">
</div>
<div role="navigation" class="navbar navbar-default navbar-static-top">
<div class="navbar-header col-sm-6 col-md-6">
<div class="logo-well">
<img src="logo.png" alt="Neo4j World's Leading Graph Database" id="logo">
</a>
</div>
</div>
<div class="nav">
<a href="about.html">About</a>
<a href="work.html">How it works</a>
<a href="develop.html">Developers</a>
</div>
</div>
<div class="class">
<div class="class1">Please select the class you're studying in
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle classbtn" type="button" data-bs-toggle="dropdown" aria-expanded="false">
Select class
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Class IX</a></li>
<li><a class="dropdown-item" href="#">Class X</a></li>
</ul>
</div>
</div>
<div class="class2">Please select the subject you want to study
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle subbtn" type="button" data-bs-toggle="dropdown" aria-expanded="false">
Select subject
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">English</a></li>
<li><a class="dropdown-item" href="#">Hindi</a></li>
<li><a class="dropdown-item" href="#">Maths</a></li>
<li><a class="dropdown-item" href="#">Science</a></li>
<li><a class="dropdown-item" href="#">Social Studies</a></li>
</ul>
</div>
</div>
</div>
<input type="text" class="searchbar" placeholder="What are you looking for?">
<button type="button" class="btn btn-light submitbtn">Search</button>
<div class="row">
<div class="col-md-5">
<div class="panel panel-default">
<div class="panel-heading">Search Results</div>
<table id="results" class="table table-striped table-hover">
<thead>
<tr>
<th>Index</th>
<th>Topic</th>
<th>Tagline</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="col-md-7">
<div class="panel panel-default">
<div class="panel-heading" id="title">Details</div>
<div class="row">
<div class="col-md-8 col-sm-8">
<h4>Description</h4>
<ul id="crew">
</ul>
</div>
</div>
</div>
</div>
</div>
<style type="text/css">
.nav{
font-size: 15px;
}
.navbar{
background-color: #5c5c5c;
}
a{
padding: 10px 20px;
text-decoration: none;
color: rgb(239, 237, 237);
font-weight: bold;
font-size: 15px;
}
.class{
display: grid;
grid-template-columns: 65% auto;
}
.class1{
font-size: 15px;
margin: 10px 240px;
display: inline;
}
.class2{
font-size: 15px;
margin: 10px 40px;
}
.classbtn,.subbtn{
font-size: 15px;
}
.classbtn{
margin: 5px 80px;
}
.subbtn{
margin: 5px 90px;
}
.dropdown-item{
font-size: 12px;
}
.submitbtn{
border: 2px solid darkgrey;
margin: 20px 47%;
padding: 8px 15px;
font-size: 15px;
border-radius: 5px;
}
.searchbar{
margin: 20px 46%;
padding: 7px 12px;
font-size: 15px;
border-radius: 4px;
}
.search{
display: block;
}
h4{
margin-left: 50px;
padding: 7px 10px;
font-weight: bold;
}
.panel-heading{
font-size: 17px;
}
.row{
margin-left: 20px;
}
.panel{
margin-right: 30px;
}
</style>
</body>
</html>