-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhacker_dojo.html
More file actions
88 lines (83 loc) · 2.68 KB
/
hacker_dojo.html
File metadata and controls
88 lines (83 loc) · 2.68 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="description" content="Hacker Dojo Group Project" />
<title>Hacker Dojo Project</title>
<link rel="stylesheet" href="hacker_dojo.css" />
</head>
<body>
<div id="container">
<header>
<div>
<img src="logo.png" alt="Hacker Dojo Logo" />
<p>HACKER DOJO</p>
</div>
<ul>
<li><a href="">EVENTS</a></li>
<li><a href="">MEMBERSHIP</a></li>
<li><a href="">GIVE</a></li>
<li><a href="">ABOUT</a></li>
<li><a href="">WIKI</a></li>
<li><a href="">CONTACT</a></li>
</ul>
<hr />
</header>
<div id="main_content">
<h1>Welcome to the community center for hackers + thinkers.</h1>
<img src="content_img.png" alt="Content Image" />
<div id="left_column">
<div id="top_row">
<div id="oh_hey_there">
<div class="left_border">
<h2>Oh Hey There</h2>
<p>Welcome to Hacker Dojo! We're a community center in Mountain View. Hacker Dojo is part coworking space, part events venue, and part community center.</p>
<a href="">About us</a>
</div>
</div>
<div id="join_us">
<div class="left_border">
<h2>Join Us</h2>
<p>You can always drop in 8am-10pm to visit. But for $100 a month you can get your own RFID-key 24/7 access, the ability to host events, and more.</p>
<a href="">Join now</a>
</div>
</div>
</div>
<div id="bottom_row">
<div id="we_have_events">
<div class="left_border">
<h2>We Have Events</h2>
<p>Events, lectures, parties, BarCamps, DevHouses, LAN parties, hackathons, knitting circles, tinkering, brainstorming and coworking: you name it, we got it.</p>
<a href="">See the full calendar</a>
</div>
</div>
<div id="get_involved">
<div class="left_border">
<h2>Get Involved</h2>
<p>There is lots to do at Hacker Dojo! From Happy Hour every Friday, group "fix-it" days, computing classes, or even just hanging out, you'll find something to kep you busy!</p>
<a href="">Find out more</a>
</div>
</div>
</div>
</div>
<div id="right_column">
<div id="visit_us">
<div class="left_border">
<h2>Visit Us</h2>
<p><img src="map.png" alt="Map"/>We're located at 599 Fairchild Dr. in Mountain View, CA. Our phone number is (650) 898-7925, and you can <a href="">contact us</a> or <a href="">follow us on Twitter</a>.</p>
</div>
</div>
</div>
</div>
<footer>
<ul>
<li>Hacker Dojo</li>
<li>599 Fairchild Dr.</li>
<li>Mountain View, Ca 94043</li>
<li><a href="">info@hackerdojo.com</a></li>
<li>twitter: <a href="">@hackerdojo</a></li>
</ul>
</footer>
</div>
</body>
</html>