|
1 | 1 | <!doctype html>
|
2 | 2 | <html lang="en">
|
3 |
| -<head> |
4 |
| - <meta charset="UTF-8"> |
5 |
| - <title>NodeGirls JavaScript Workshop</title> |
6 |
| - <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Source+Sans+Pro:200" rel="stylesheet"> |
7 |
| - <link rel="stylesheet" href="css/main.css"> |
8 |
| -</head> |
9 |
| -<body> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <title>NodeGirls JavaScript Workshop</title> |
| 6 | + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200"> |
| 7 | + <link rel="stylesheet" href="css/main.css"> |
| 8 | + </head> |
| 9 | + <body> |
| 10 | + <header> |
| 11 | + <div id="logo"> |
| 12 | + <img src="img/logo.png" alt="Welcome to Node Girls"> |
| 13 | + </div> |
| 14 | + <h1>Hello everyone.</h1> |
| 15 | + <h2>Let's do some interactive coding today!</h2> |
| 16 | + </header> |
10 | 17 |
|
11 |
| -<header> |
12 |
| - <div id="logo"> |
13 |
| - <img src="img/logo.png" alt="node-girls-logo"> |
14 |
| - </div> |
15 |
| -</header> |
16 |
| - |
17 |
| -<section> |
18 |
| - <h1>Hello everyone. Let's do some interactive coding today! </h1> |
19 |
| - <div class="settings"> |
20 |
| - <p>To open the browser console, double click on the screen (or press |
21 |
| - <i>'Command+Option+J'</i> on mac and <i>'F12'</i> on Windows) and console |
22 |
| - will appear at the bottom or on the right side of the screen. It will work |
23 |
| - for Chrome and Firefox after selecting <i>'Inspect'</i>. |
24 |
| - </p> |
25 |
| - <p>For Safari, go to <i>'Safari > Preferences > Advanced > |
26 |
| - and tick the box Show Develop menu in menu bar'</i>, restart Safari, and now you can |
27 |
| - double click on the page and select <i>'Inspect Element'</i> to see the console. |
28 |
| - </p> |
29 |
| - </div> |
30 |
| -</section> |
31 |
| -<footer> |
32 |
| - <ul> |
33 |
| - <li class="twitter"> |
34 |
| - Twitter: <a href="https://twitter.com/NodeGirlsSydney" target="_blank" rel="noopener noreferrer">@NodeGirlsSydney</a> |
35 |
| - <a href="https://twitter.com/NodeGirlsMelb" target="_blank" rel="noopener noreferrer">@NodeGirlsMelb</a> |
36 |
| - </li> |
37 |
| - <li class="facebook">Facebook: <a href="https://www.facebook.com/NodeGirlsAustralia" target="_blank" rel="noopener noreferrer">NodeGirlsAustralia</a></li> |
38 |
| - </ul> |
39 |
| - <ul> |
40 |
| - <li class="website">Website: <a href="http://nodegirls.com.au" target="_blank" rel="noopener noreferrer">nodegirls.com.au</a></li> |
41 |
| - <li class="email">e-mail: <a href="mailto:info@nodegirls.com.au" target="_blank" rel="noopener noreferrer">info@nodegirls.com.au</a></li> |
42 |
| - </ul> |
43 |
| -</footer> |
44 |
| - |
45 |
| -<script src="js/level1.js"></script> |
46 |
| - |
47 |
| -</body> |
| 18 | + <main> |
| 19 | + <div> |
| 20 | + <p>On <a href="https://www.google.com/chrome/browser/desktop/index.html">Chrome</a> and <a href="https://www.mozilla.org/en-GB/firefox/new/">Firefox</a>, to open the Browser Console, invoke the context/right click menu and select <i>'Inspect'</i>. The console will appear at the bottom or on the right side of the screen.</p> |
| 21 | + <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> |
| 22 | + <p>On <a href="https://support.apple.com/en-au/HT204416">Safari</a>, go to <i>'Safari > Preferences > Advanced >'</i> and tick the box Show Develop Menu in menu bar, restart Safari, and now you can double click on the page and select <i>'Inspect Element'</i> to see the console.</p> |
| 23 | + </div> |
| 24 | + </main> |
| 25 | + <footer> |
| 26 | + <div> |
| 27 | + <ul> |
| 28 | + <li class="twitter"> |
| 29 | + <span>Twitter:</span> |
| 30 | + <a href="https://twitter.com/NodeGirlsSydney" target="_blank" rel="noopener noreferrer">@NodeGirlsSydney</a> |
| 31 | + <a href="https://twitter.com/NodeGirlsMelb" target="_blank" rel="noopener noreferrer">@NodeGirlsMelb</a> |
| 32 | + </li> |
| 33 | + <li class="facebook"> |
| 34 | + <span>Facebook:</span> |
| 35 | + <a href="https://www.facebook.com/NodeGirlsAustralia" target="_blank" rel="noopener noreferrer">NodeGirlsAustralia</a> |
| 36 | + </li> |
| 37 | + </ul> |
| 38 | + <ul> |
| 39 | + <li class="website"> |
| 40 | + <span>Website:</span> |
| 41 | + <a href="http://nodegirls.com.au" target="_blank" rel="noopener noreferrer">nodegirls.com.au</a> |
| 42 | + </li> |
| 43 | + <li class="email"> |
| 44 | + <span>e-mail:</span> |
| 45 | + <a href="mailto:info@nodegirls.com.au" target="_blank" rel="noopener noreferrer">info@nodegirls.com.au</a> |
| 46 | + </li> |
| 47 | + </ul> |
| 48 | + </div> |
| 49 | + </footer> |
| 50 | + <script src="js/level1.js"></script> |
| 51 | + </body> |
48 | 52 | </html>
|
0 commit comments