-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (145 loc) · 4.93 KB
/
index.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
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Begin Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<title>Bitcamp</title>
<!-- End Meta -->
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css"
/>
<link rel="stylesheet" type="text/css" href="./style.css" />
<meta
name="description"
content="Bitcamp is a place for exploration. You will have 36 hours to delve into your curiosities, learn something new, and make something awesome. With world-class mentors and hundreds of fellow campers, you're in for an amazing time. If you're ready for an adventure, see you by the fire!"
/>
<meta property="og:title" content="Bitcamp 2020" />
<meta property="og:site_name" content="Bitcamp 2020" />
<meta property="og:url" content="https://bit.camp/" />
<meta property="og:image" content="https://bit.camp/img/badge.png" />
<meta
property="og:description"
content="Bitcamp is a place for exploration. You will have 36 hours to delve into your curiosities, learn something new, and make something awesome. With world-class mentors and hundreds of fellow campers, you're in for an amazing time. If you're ready for an adventure, see you by the fire!"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://bit.camp/" />
<meta property="twitter:image" content="https://bit.camp/img/badge.png" />
<meta name="twitter:title" content="Bitcamp 2020" />
<meta
name="twitter:description"
content="Bitcamp is a place for exploration. You will have 36 hours to delve into your curiosities, learn something new, and make something awesome. With world-class mentors and hundreds of fellow campers, you're in for an amazing time. If you're ready for an adventure, see you by the fire!"
/>
<!-- Begin Favicons/Theme -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./bitcamp-brand/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./bitcamp-brand/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./bitcamp-brand/favicons/favicon-16x16.png"
/>
<link rel="manifest" href="./bitcamp-brand/favicons/site.webmanifest" />
<link
rel="mask-icon"
href="./bitcamp-brand/favicons/safari-pinned-tab.svg"
color="#ff6f3f"
/>
<link rel="shortcut icon" href="./bitcamp-brand/favicons/favicon.ico" />
<meta name="msapplication-TileColor" content="#ff6f3f" />
<meta
name="msapplication-config"
content="./bitcamp-brand/favicons/browserconfig.xml"
/>
<meta name="theme-color" content="#ffffff" />
<!-- End Favicons/Theme -->
</head>
<body>
<nav>
<div id="nav-left">
<a href="#">Events</a>
<a href="#">Sponsors</a>
</div>
<div id="nav-right">
<a href="#">Brand</a>
<a href="#">Contact</a>
</div>
</nav>
<section id="hero">
<img
src="./bitcamp-brand/logos/bitcamp.png"
alt="Bitcamp Campfire Logo"
/>
Bitcamp
</section>
<section id="2018-panel" class="year info-left">
<div>
<span></span>
<h1>Mark Your Trail</h1>
<p>Body text</p>
<a class="underline" href="#">Visit the Site</a>
</div>
</section>
<section id="contact">
<h1>Want s'more?</h1>
<p>
Sign up for out mailing list and we'll keep you updated on all the
latest Bitcamp news.
</p>
<!-- TODO: Add the email form here -->
</section>
<footer>
<div>
<h3>Learn More</h3>
<ul>
<li><a href="#">Events</a></li>
<li><a href="#">Sponsor</a></li>
<li><a href="#">Brand Guidelines</a></li>
<li><a href="#">Organize with us</a></li>
</ul>
</div>
<div>
<h3>Partners</h3>
<ul>
<!--TODO: add link icons-->
<li><a href="#">Major Leauge Hacking</a></li>
<li><a href="#">University of Maryland</a></li>
<li><a href="#">Technica</a></li>
</ul>
</div>
<div>
<h3>Legal</h3>
<ul>
<!--TODO: add link icon to CoC-->
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Code of Conduct</a></li>
<li><a href="#">MLH Code of Conduct</a></li>
</ul>
</div>
<div>
<h3>Support</h3>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Mailing Address</a></li>
<li><a href="#">Change Language</a></li>
</ul>
</div>
<div>
<img src="./bitcamp-brand/logos/badge.png" />
© 2020 Bitcamp, LLC.
</div>
</footer>
</body>
</html>