-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (69 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
76 lines (69 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width,initial-scale=1,shrink-to-fit=no" name=viewport>
<meta content="text/html;charset=utf-8" http-equiv=content-type>
<title>League of Legends - Contest by Team Avengers</title>
<meta content="League of Legends - Contest by Team Avengers" property="og:title" name="title">
<meta content="League of Legends - Contest by Team Avengers" property="og:description" name="description">
<meta content="Karthikeyan" name="author">
<link href="bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap" rel=stylesheet>
<link href="img/og.webp" rel=icon type=image/png>
<link href="img/og.webp" rel=apple-touch-icon type=image/png>
<meta content="https://cop.eselfmade.in/img/og.webp" property="og:image">
</head>
<body>
<header>
<nav class="text-center py-5">
<h1>League of Legends</h1>
</nav>
</header>
<section class="container mt-4 pb-5 text-center">
<div class="row">
<div class="col-md-6">
<a href="bronze" class="card pointer shadow text-decoration-none">
<div class="card-header">
<h2>BRONZE</h2>
</div>
<div class="card-body">
<div class="px-5 mb-4">
<img src="img/bronze.webp" class="img-fluid" alt="">
</div>
</div>
<div class="card-footer">
<div>
<h3>WINNER</h3>
</div>
<div>
₹2000 worth gift products<br>5 Star hotel dinner
</div>
</div>
</a>
</div>
<div class="col-md-6">
<a href="star" class="card pointer shadow text-decoration-none">
<div class="card-header">
<h2>STAR</h2>
</div>
<div class="card-body">
<div class="px-5 mb-4">
<img src="img/star.webp" class="img-fluid" alt="">
</div>
</div>
<div class="card-footer">
<div>
<h3>WINNER</h3>
</div>
<div>
₹3000 worth gift products<br>5 Star hotel dinner
</div>
</div>
</a>
</div>
</div>
</section>
</body>
</html>