-
Notifications
You must be signed in to change notification settings - Fork 62
/
index.html
66 lines (61 loc) · 2.78 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MusesCodeJS | Intro to JavaScript Workshop</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=GFS+Didot">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<div id="logo">
<img src="img/logo_muses_color.svg" alt="Welcome to Muses Code JS">
</div>
<h1>Hello everyone.</h1>
<h2>Let's do some interactive coding today!</h2>
</header>
<main>
<div>
<p>On <a href="https://www.google.com/chrome/">Chrome</a> and <a href="https://www.mozilla.org/en-GB/firefox/new/">Firefox</a>,
to open the <i>Browser Console</i>, right-click the page and select <i>'Inspect'</i>. The console will
appear at the bottom or on the right side of the screen. On <a href="https://www.opera.com">Opera</a> it will be
<i>'Inspect Element'</i></p>
<p>If you're ready for a shortcut, press <i>'<abbr title="Command">CMD</abbr>+<abbr title="Option">OPT</abbr>+J'</i>
on Mac, or <i>'F12'</i> on Windows</p>
<p>On <a href="https://support.apple.com/en-au/HT204416">Safari</a>, go to the menu bar and open <i>'Safari > Preferences > Advanced >'</i>
and tick the box <i>'Show Develop Menu'</i>, restart Safari, now you can right-click on the page and
select <i>'Inspect Element'</i> to see the console.</p>
</div>
</main>
<footer>
<div>
<ul>
<li class="twitter">
<span>Twitter:</span>
<a href="https://twitter.com/MusesCodeJSSyd" target="_blank" rel="noopener noreferrer">@MusesCodeJSSyd</a>
<a href="https://twitter.com/MusesCodeJSMelb" target="_blank" rel="noopener noreferrer">@MusesCodeJSMelb</a>
<a href="https://twitter.com/MCJSHobart" target="_blank" rel="noopener noreferrer">@MCJSHobart</a>
<a href="https://twitter.com/MCJSPerth" target="_blank" rel="noopener noreferrer">@MCJSPerth</a>
<a href="https://twitter.com/BrisMuses" target="_blank" rel="noopener noreferrer">@BrisMuses</a>
</li>
<li class="facebook">
<span>Facebook:</span>
<a href="https://www.facebook.com/MusesCodeJS" target="_blank" rel="noopener noreferrer">MusesCodeJS</a>
</li>
</ul>
<ul>
<li class="website">
<span>Website:</span>
<a href="https://musescodejs.org" target="_blank" rel="noopener noreferrer">musescodejs.org</a>
</li>
<li class="email">
<span>e-mail:</span>
<a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">[email protected]</a>
</li>
</ul>
</div>
</footer>
<script src="js/level1.js"></script>
</body>
</html>