-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelevent_p2.html
137 lines (129 loc) · 2.83 KB
/
relevent_p2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Relevent 22 - Phase 2</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Satoshi", sans-serif;
}
body {
background-color: #d5433b;
}
.hero-section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.hero-img {
width: 50%;
margin: 50px;
}
.hero-title {
font-size: 4vw;
color: white;
text-align: center;
}
.main-content {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
justify-content: space-around;
align-items: stretch;
margin: 100px;
}
.col {
background-color: white;
color: #d5433b;
border-radius: 5px;
padding: 20px;
font-size: 150%;
font-weight: 700;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
margin: 5px;
}
@media screen and (max-width: 768px) {
.hero-title {
font-size: 6vw;
}
.main-content {
grid-template-columns: 1fr 1fr;
}
}
</style>
</head>
<body>
<div class="hero-section">
<img class="hero-img"" src="images/relevent_logo.png"/>
<h1 class="hero-title">Relevent Phase 2 Qualifiers</h1>
</div>
<div class="main-content"></div>
</body>
<script>
const qualifiers = [
"A R Gokul",
"Anoushka L Nair",
"Abhilash George",
"Abhiram Krishna R S",
"Adithya Krishnan",
"Akshya Sreekumar ",
"Allen Fencer ",
"Aswani PP ",
"Aswathy Mohan",
"ASWEN A M",
"Ben George Netto",
"BS Meenakshy",
"C Rachana ",
"Chris Mathew",
"D Sandra Santhosh ",
"Devi Nandana SV",
"Ephy Eapen V George ",
"Faizan Ahamed Dawood",
"Gouripriya S A",
"Goutham Girish",
"Gowri Nandana T",
"Joel Thomas Thazhamon",
"Jovan Mathew Thomas ",
"Kashyap Sanal",
"Liya Susan Biju",
"MABLE T PAUL",
"Negha S",
"Prajwal P P",
"Preethi Manoj",
"Rahul George Paul",
"Revand S",
"Rhea Merin Thomas",
"Rithika Pradeep",
"RIYA RAJESH",
"Ryan Prajoth",
"Safna S",
"Sania M S",
"Sanna Pramod",
"Saravan A D ",
"Shahin Sadath",
"Shibin Shibu",
"Siddarth S",
"SIJO AJAY",
"Sophy Maria Joy",
"Soumya Sinha",
"Sruthi N A "
];
const mainContainer = document.querySelector(".main-content");
qualifiers.forEach((name) => {
name = name.trim()
const col = document.createElement("div");
col.classList.add("col");
col.innerHTML = name;
mainContainer.appendChild(col);
});
</script>
</html>