-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
37 lines (30 loc) · 1.33 KB
/
home.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../../../favicon.ico">
<title>Signin Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body class="text-center">
<div class="jumbotron container-fluid">
<h1>Information Retrieval</h1>
<h4 class="lead">Assignment # 1</h4>
</div>
<container>
<form>
<img class="mb-4" src="http://www.ics.uci.edu/~djp3/classes/2009_01_02_INF141/Misc/wordle.jpg" alt=""
height="200">
<h1 class="h3 mb-3 font-weight-normal">Please Select Query type..</h1>
<a type="button" class="btn btn-primary btn-sm" href="/boolean">Boolean Query</a>
<a type="button" class="btn btn-secondary btn-sm" href="/proximity">Proximity Query</a>
<p class="mt-5 mb-3 text-muted">© 2019 Information Retrieval </p>
</form>
</container>
</body>
</html>