-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathindex.html
49 lines (44 loc) · 1.66 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NodeGirls JavaScript Workshop</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Source+Sans+Pro:200" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<div id="logo">
<img src="img/logo.png" alt="node-girls-logo">
</div>
</header>
<section>
<h1>Hello everyone. Let's do some interactive coding today! </h1>
<div class="settings">
<p>To open browser console do double click on the screen (or press
<i>'Command+Option+J'</i> on mac and <i>'F12'</i> on Windows) and console
will appear on the bottom or on the right side of the screen. It will work
for Chrome and Firefox after select <i>'Inspect'</i>.
</p>
<p>For Safari, go to <i>'Safari > Preferences > Advanced >
and tick the box Show Develop menu in menu bar'</i>, restart Safari, now you can
do double click on the page and select <i>'Inspect Element'</i> to see console.
</p>
</div>
</section>
<footer>
<ul class="float-left">
<li class="twitter">
Twitter: <a href="https://twitter.com/NodeGirlsSydney">@NodeGirlsSydney</a>
<a href="https://twitter.com/NodeGirlsMelb">@NodeGirlsMelb</a>
</li>
<li class="facebook">Facebook: <a href="https://www.facebook.com/NodeGirlsAustralia">NodeGirlsAustralia</a></li>
</ul>
<ul class="float-right">
<li class="website">Website: <a href="http://nodegirls.com.au">http://nodegirls.com.au</a></li>
<li class="email">e-mail: <a href="mailto:info@nodegirls.com.au">info@nodegirls.com.au</a></li>
</ul>
</footer>
<script src="js/level1.js"></script>
</body>
</html>