forked from aswinshenoy/listify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (53 loc) · 2.25 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
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>Listify</title>
<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>
<nav class="navbar navbar-dark bg-primary">
<div class="navbar-brand">Listify</div>
</nav>
<div class="container my-4">
<!-- Do not touch this -->
<div class="alert alert-warning">
<h4>Instructions</h4>
<ol>
<li>Fork this repo, and clone it locally</li>
<li>Create a page for your list.</li>
<li>Push your code, and submit a Pull Request</li>
<li> We review, and add your card here</li>
</ol>
</div>
<div class="alert alert-danger">
<h4>Rules</h4>
<ul>
<li>You don't need to touch this index.html</li>
<li>You shouldn't touch someone else's team / code</li>
<li>Follow the same design pattern / code snippet wherever applicable</li>
<li>Creativity is appreciated, but a strict no to NSFW.</li>
</ol>
</div>
<!-- dont change until here -->
<!-- For cricket fans -->
<h4 id="cricket">Cricket Team List</h4>
<div class="row mx-0 my-4">
<div class="col-md-4 p-2">
<div class="card team-card p-2">
<h3>Royal Challengers Bangalore</h3>
<div><b>Captain:</b> Virat Kohli</div>
<a class="btn btn-primary" href="./royal-challengers-bangalore.html">View Team</a>
</div>
</div>
</div>
<!-- For football fans -->
<h4 id="football">Football Team List</h4>
<div class="row mx-0 my-4">
</div>
<!-- For film fans -->
<h4 id="film">Film List</h4>
<div class="row mx-0 my-4">
</div>
</div>
</body>
</html>