-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (128 loc) · 4.95 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CLEAN MARKUP = GOOD KARMA.
Hi source code lover,
you're a curious person and a fast learner ;)
Let's make something beautiful together. Contribute on Github:
https://github.com/webslides/webslides
Thanks!
-->
<!-- SEO -->
<title>React Study Jam</title>
<meta name="description" content="A quick tour to the web dev tech landscape in the next year.">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,700,700i%7CMaitree:200,300,400,600,700&subset=latin-ext"
rel="stylesheet">
<!-- CSS Base -->
<link rel="stylesheet" type='text/css' media='all' href="./static/css/webslides.css">
<!-- CSS Base -->
<link rel="stylesheet" type='text/css' media='all' href="./static/css/custom-style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<body>
<header role="banner">
<nav role="navigation">
<ul>
<li class="github">
<a style="padding: 1.5rem;" rel="external" href="https://github.com/fb-devc-algiers/react-study-jam"
title="Github" target="_blank">
<i class="fab fa-github"></i>
<em>Slides</em>
</a>
</li>
</ul>
</nav>
</header>
<main role="main">
<article id="webslides">
<!-- Quick Guide
- Each parent <section> in the <article id="webslides"> element is an individual slide.
- Vertical sliding = <article id="webslides" class="vertical">
- <div class="wrap"> = container 90% / <div class="wrap size-50"> = 45%;
-->
<!-- Slide Title ===================================================================-->
<section class="bg-apple aligncenter">
<!--.wrap = container (width: 90%) -->
<div class="wrap">
<h1>React Study Jam</h1>
<img src="./static/images/react-logo.svg" class="App-logo" alt="react logo">
</div>
<!-- .end .wrap -->
</section>
<!-- Resources ===================================================================-->
<section class="bg-apple aligncenter">
<!--.wrap = container (width: 90%) -->
<div style="text-align: left;" class="wrap">
<h1>Resources</h1>
<h4>
<a href="https://www.youtube.com/watch?v=sBws8MSXN7A" target="_blank">
Youtube Channel Traversy Media: MediaReact Crash Course
<i class="fas fa-external-link-alt"></i>
</a>
<br>
<a href="https://www.youtube.com/watch?v=PBTYxXADG_k&list=PLillGF-RfqbbiTGgA77tGO426V3hRF9iE" target="_blank">
Youtube Channel Traversy Media: Learn the MERN Stack
<i class="fas fa-external-link-alt"></i>
</a>
<br>
<a href="https://www.youtube.com/user/kentdoddsfamily" target="_blank">
Youtube Channel Kent C. Dodds
<i class="fas fa-external-link-alt"></i>
</a>
<br>
<br>
<a href="https://www.linkedin.com/learning/" target="_blank">
Linkedin Learning
<i class="fas fa-external-link-alt"></i>
</a>
</h4>
</div>
<!-- .end .wrap -->
</section>
<!-- References ===================================================================-->
<section class="bg-apple aligncenter">
<!--.wrap = container (width: 90%) -->
<div style="text-align: left;" class="wrap">
<h2>References</h2>
<h4>Graphics from:</h4>
<p>
<a href="https://www.iconfinder.com/" target="_blank">
https://www.iconfinder.com/
<i class="fas fa-external-link-alt"></i>
</a>
<br>
<a href="https://worldvectorlogo.com/" target="_blank">
https://worldvectorlogo.com/
<i class="fas fa-external-link-alt"></i>
</a>
</p>
<h4>Slides made with:</h4>
<p>
<a href="https://webslides.tv/" target="_blank">
https://webslides.tv/
<i class="fas fa-external-link-alt"></i>
</a>
</p>
</div>
<!-- .end .wrap -->
</section>
<!-- Final Slide ======================================================================-->
<section class="bg-apple aligncenter">
<h1 class="text-emoji zoomIn">😎</h1>
<h1><strong>Thank you!</strong></h1>
</section>
</article>
</main>
<!--main-->
<!-- Required -->
<script src="./static/js/webslides.js"></script>
<script>
window.ws = new WebSlides();
</script>
</body>
</html>