-
Notifications
You must be signed in to change notification settings - Fork 329
/
index.html
74 lines (68 loc) · 2.74 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>r/Argentina programa | Intro a JavaScript</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>
<h1>Hola!</h1>
<h2>Escribamos un poco de código el día de hoy!</h2>
</header>
<main>
<div>
<p>En <a href="https://www.google.com/chrome/">Chrome</a> y <a href="https://www.mozilla.org/en-GB/firefox/new/">Firefox</a>,
para abrir la <i>Consola del navegador</i>, click derecho en esta página y seleccionen <i>'Inspect'</i>. La consola va a aparecer
abajo o a la derecha de la pantalla.
<p>Si estás listos para probar un atajo del teclado, apretá <i>'<abbr title="Command">CMD</abbr>+<abbr title="Option">OPT</abbr>+J'</i>
en Mac, ó <i>'F12'</i> en Windows</p>
</div>
<div id="logo">
<img src="img/woman_bw.jpg" alt="Welcome to Muses Code JS">
</div>
</main>
<footer>
<div>
<ul>
<li class="website">
<span>GitHub</span>
<a href="https://github.com/r-argentina-programa/introduccion-a-js" target="_blank">github.com/r-argentina-programa</a>
</li>
</ul>
</div>
<div>
<p>Muchas gracias a MusesCodeJS que es la inspiración para este taller.</p>
</div>
<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/nivel1.js"></script>
</body>
</html>