-
Notifications
You must be signed in to change notification settings - Fork 0
/
juliashenn.html
143 lines (115 loc) · 3.16 KB
/
juliashenn.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
<!--Name: Julia--><body style="background-color:DCECF0;">
<div body style="background-color:white; height:50; display: flex; align-items: center;">
<img src="https://codeinthedark.hackillinois.org/submissions/images/CAT-Logo-small.png"/>
<div body style ="justify-content: space-evenly; margin-left: 1000px;">
<h> HOME </h>
<div class="dropdown">
<button class="dropbtn">PAGES</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">BLOG</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">PRODUCTS</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
</div>
</div>
<p style="background-image: url('https://codeinthedark.hackillinois.org/submissions/images/home/slider-bg.png');">
<h3>
Code in the Dark
</h3>
</p>
<img src="https://codeinthedark.hackillinois.org/submissions/images/home/slider-bg.png"/>
<br>
<div id="flex-container">
<div class="flex-item">
<img src="https://codeinthedark.hackillinois.org/submissions/images/home/icon1.png"/>
<br>
<br>
<h>CAT loves geeks</h>
Ground round tenderloin flank shank ribeye.
Hamkevin meatball swine. Cow shankle beef sirloin chicken ground round.
</div>
<div class="flex-item">
<img src="https://codeinthedark.hackillinois.org/submissions/images/home/icon2.png"/>
<br>
<br>
Ground round tenderloin flank shank ribeye.
Hamkevin meatball swine. Cow shankle beef sirloin chicken ground round.
<h>CAT loves CS'</h></div>
<div class="flex-item">
<img src="https://codeinthedark.hackillinois.org/submissions/images/home/icon3.png"/>
<br>
<br>
<h>CAT is 4 u</h>
Ground round tenderloin flank shank ribeye.
Hamkevin meatball swine. Cow shankle beef sirloin chicken ground round.</div>
</div>
<html>
<head>
<style>
#flex-container {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 53%;
margin: 0 auto;
}
.flex-item {
width: 200px;
height: 200px;
text-align: center;
}
.dropbtn {
background-color: white;
color: BLACK;
padding: 16px;
font-size: 16px;
border: none;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}
</html>
</head>
</style>