-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprizes.html
117 lines (104 loc) · 4.59 KB
/
prizes.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
<!DOCTYPE HTML>
<html>
<head>
<title>Prizes</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="assets/css/main.css"/>
</head>
<body class="subpage">
<!-- Header -->
<header id="header" style="height: 75px">
<a href="index.html" style="position: relative; bottom: 35px">Home</a>
<a href="about_new.html" style="position: relative; bottom: 35px">About Us</a>
<a href="gallery.html" style="position: relative; bottom: 35px">Gallery</a>
<img id="home-logo" src="images/logo.png" alt="" height="80px" width="80px">
<a href="sponsor.html" style="position: relative; bottom: 35px">Sponsors</a>
<a href="schedule.html" style="position: relative; bottom: 35px">Schedule</a>
<a href="prizes.html" style="position: relative; bottom: 35px">Prizes</a>
</header>
<!-- Nav -->
<nav id="menu"></nav>
<!-- One -->
<section class="wrapper style3">
<div class="inner">
<header class="align-center">
<h2>PRIZES</h2>
</header>
</div>
</section>
<!-- Two -->
<section class="wrapper style2" style="padding: 3rem 0 3rem 0">
<div class="inner">
<div style="height:80rem;"class="box">
<div class="content">
<header class="align-center">
<p>THE ATOMHACKS</p>
<h2>PRIZES</h2>
</header>
<div id="prize-row" class="row">
<div class="prize-column">
<h4 style="text-align: center;">FIRST PLACE PRIZE: NINTENDO SWITCH LITE</h4> <br>
<div class="prize-img">
<img style="height:18rem; width:auto;" src="images/nintendo1.jpg" alt="" class="center" >
</div>
</div>
<div class="prize-column">
<h4 style="text-align: center;">SECOND PLACE PRIZE: $50 AMAZON GIFT CARD</h4> <br>
<div class="prize-img">
<img style="height:18rem; width:auto;" src="images/logos/amazon.png" alt="" class="center" >
</div>
</div>
</div>
<div id="prize-row" class="row">
<div class="prize-column">
<h4 style="text-align: center;">THIRD PLACE PRIZE: $25 AMAZON GIFT CARD</h4> <br>
<div class="prize-img">
<img style="height:18rem; width:auto;" src="images/logos/amazon.png" alt="" class="center" >
</div>
</div>
<div class="prize-column">
<h4 style="text-align: center;">BEST BEGINNERS HACK: ARDUINO STARTER KIT</h4><br>
<div class="prize-img">
<img style="height:18rem; width:auto;" src="images/arduino.jpg" alt="" class="center" >
</div>
</div>
</div>
<br>
<div id="prize-row" class="row">
<div class="prize-column">
<h4 style="text-align: center;">BEST AR/VR PROJECT powered by echoAR</h4> <br>
<div class="prize-img">
<img style="height:10rem; width:auto;" src="images/logos/echoAR.png" alt="" class="center" >
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<ul class="icons">
<li><a href="https://www.facebook.com/BxSciHackathoners" class="icon fa-facebook"><span class="label">Facebook</span></a>
</li>
<li><a href="https://www.instagram.com/bxsciatomhacks/" class="icon fa-instagram"><span class="label">Instagram</span></a>
</li>
<li><a href="https://github.com/atomhacks" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="mailto:atomhacks@bxscience.edu" class="icon fa-envelope-o"><span
class="label">Email</span></a></li>
</ul>
</div>
<div class="copyright">
© Copyright 2021, Bronx High School of Science AtomHacks. <br>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>