-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaanasvi.html
101 lines (91 loc) · 2.68 KB
/
maanasvi.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
<!--Name: Maanasvi Kodli--><html>
<head>
<title>Code in the Dark</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: linen;
}
h1 {
color: black;
}
.row {
display: flex;
background-color: lavender;
}
.column {
flex: 50%;
padding: 5px;
}
.row2 {
display: flex;
background-color: lightslategray;
}
.column2 {
flex: 50%;
padding: 5px;
}
.row3 {
display: flex;
background-color: lemonchiffon;
}
.column3 {
flex: 30%;
padding: 5px;
}
.row4 {
display: flex;
background-color: linen;
}
.column4 {
flex: 30%;
padding: 5px;
}
</style>
</head>
<body>
<h1>Code in the Dark</h1>
<div class="row">
<div class="column">
<p>Coding here and there! Try your best to recreate this responsive site</p>
</div>
<div class="column">
<img src = 'https://codeinthedark.hackillinois.org/submissions/images/home/slider/truck.png'></img>
</div>
</div>
<div class = 'row2'>
<div class = 'column2'>
<img src = 'https://codeinthedark.hackillinois.org/submissions/images/home/icon1.png'></img>
<p>CAT loves geeks</p>
</div>
<div class = 'column2'>
<img src = 'https://codeinthedark.hackillinois.org/submissions/images/home/icon2.png'></img>
<p>CAT loves CS</p>
</div>
<div class = 'column2'>
<img src = 'https://codeinthedark.hackillinois.org/submissions/images/home/icon3.png'></img>
<p>CAT is 4U</p>
</div>
</div>
<div class = 'row3'>
<div class="column3">
<h1>HackIllinois 2022</h1>
<p>A responsive retina ready template</p>
</div>
<div class="column3">
<img src = 'https://codeinthedark.hackillinois.org/submissions/images/home/tour-icon2.png'></img>
</div>
</div>
<div class = 'row4'>
<div class="column4">
<img src = 'https://codeinthedark.hackillinois.org/submissions/images/home/image1.png'></img>
</div>
<div class="column4">
<h1>Show your skills</h1>
<p>asdf jkl; asdf jkl;</p>
<p>asdf jkl; asdf jkl;</p>
</div>
</div>
<script></script>
</body>
</html>