-
Notifications
You must be signed in to change notification settings - Fork 0
/
ilegosmaster.html
146 lines (132 loc) · 3.35 KB
/
ilegosmaster.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
138
139
140
141
142
143
144
145
146
<!--Name: Evan--><html>
<head>
<title>Code in the Dark</title>
<style>
.navbar {
width: 100%;
height: 50px;
margin-top: 50px;
background-color: white;
vertical-align: middle;
}
body {
background-color: lightblue;
font-family: Arial, Helvetica, sans-serif;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: white;
}
li {
float: right;
}
li a {
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
color: lightblue;
}
.logo-image {
margin-left: 300px;
margin-top: 5px;
}
.first-container {
display: flex;
flex-direction: row;
margin-top: 100px;
margin-left: 300px;
}
.image-truck {
margin-left: 10px;
}
.fake-logo {
margin-left: 250px;
}
.darkbtn {
background-color: white;
border-color: CornflowerBlue;
padding: 10px;
color: CornflowerBlue;
}
.three-boxes {
display: flex;
justify-content: space-between;
margin-left: 400px;
margin-right: 100px;
margin-top: 30px;
}
.next-bar {
width: 100%;
height: 100px;
margin-left: 300px;
background-color: white;
}
</style>
</head>
<body>
<div class="navbar">
<ul>
<img
class="logo-image"
src="https://codeinthedark.hackillinois.org/submissions/images/CAT-Logo-small.png"
alt="logo"
/>
<li><a href="">Home</a></li>
<li><a href="">Pages</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Products</a></li>
</ul>
</div>
<div class="first-container">
<div>
<h1>Code in the Dark</h1>
<p>
Coding here and there! Try your best to recreate the responsive site
<b>under 25 mins...</b> Take a look at the details,
<i>each of them count!</i> Do your best to recreate them and be the
Cat <s>ninja</s> <u>n!njA_c0dEr!.</u>
</p>
<p>
╱|、<br />
(˚ˎ 。7 <br />
|、˜〵 <br />
じしˍ,)ノ<br />
</p>
<button class="darkbtn">Go D@RK!</button>
</div>
<div class="first-image-cont">
<img
class="image-truck"
src="https://codeinthedark.hackillinois.org/submissions/images/home/slider/truck.png"
alt="truck"
/>
<img
class="fake-logo"
src="https://codeinthedark.hackillinois.org/submissions/images/home/slider/catlogo.png"
/>
</div>
</div>
<div class="three-boxes">
<img
src="https://codeinthedark.hackillinois.org/submissions/images/home/icon1.png"
/>
<img
src="https://codeinthedark.hackillinois.org/submissions/images/home/icon2.png"
/>
<img
src="https://codeinthedark.hackillinois.org/submissions/images/home/icon3.png"
/>
</div>
<div class="next-bar">
<h1>Hackillinois 2022</h1>
<p>A responsive, retina-ready & wide multipurpose template</p>
</div>
</body>
</html>