Skip to content

Commit deba2c1

Browse files
authored
Create 4.html
1 parent e630050 commit deba2c1

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

4.html

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
6+
<title>Advanced Web Dev</title>
7+
<meta name="author" content="Eric Moynihan" />
8+
9+
<meta name="apple-mobile-web-app-capable" content="yes" />
10+
<meta
11+
name="apple-mobile-web-app-status-bar-style"
12+
content="black-translucent"
13+
/>
14+
15+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
16+
17+
<link rel="stylesheet" href="reveal/css/reset.css" />
18+
<link rel="stylesheet" href="reveal/css/reveal.css" />
19+
<link rel="stylesheet" href="reveal/css/theme/black.css" id="theme" />
20+
21+
<!-- Theme used for syntax highlighting of code -->
22+
<link rel="stylesheet" href="reveal/lib/css/monokai.css" />
23+
24+
<!-- Printing and PDF exports -->
25+
<script>
26+
var link = document.createElement("link");
27+
link.rel = "stylesheet";
28+
link.type = "text/css";
29+
link.href = window.location.search.match(/print-pdf/gi)
30+
? "reveal/css/print/pdf.css"
31+
: "reveal/css/print/paper.css";
32+
document.getElementsByTagName("head")[0].appendChild(link);
33+
</script>
34+
35+
<!--[if lt IE 9]>
36+
<script src="lib/js/html5shiv.js"></script>
37+
<![endif]-->
38+
</head>
39+
40+
<body>
41+
<div class="reveal">
42+
<!-- Any section element inside of this container is displayed as a slide -->
43+
<div class="slides">
44+
<section>
45+
<img src="https://cdn-assets-cloud.frontify.com/local/frontify/h_lNxVXLqrDqb2kyrixW3lMmUl7n-aBRzJUzyvzD7_9FpVMt61zcnJ81BDOqdkOndY8i0eAwn6Wh0ML1aAgbhjOhufnBG8Tz7OVGBhGqrknPlL9fOTjbQj2eRqycd0zF?width=2400" style="border: 0; background: transparent; width: 35%;" />
46+
<h1>Advanced Web Development</h1>
47+
<p><b>Week 4</b>: React</p>
48+
<p>By <a href="https://github.com/ericm">Eric Moynihan</a></p>
49+
</section>
50+
<section style="text-align: left;">
51+
52+
</section>
53+
</div>
54+
</div>
55+
56+
<script src="reveal/js/reveal.js"></script>
57+
58+
<script>
59+
// More info https://github.com/hakimel/reveal.js#configuration
60+
Reveal.initialize({
61+
controls: true,
62+
progress: true,
63+
center: true,
64+
hash: true,
65+
66+
transition: "slide", // none/fade/slide/convex/concave/zoom
67+
68+
// More info https://github.com/hakimel/reveal.js#dependencies
69+
dependencies: [
70+
{
71+
src: "reveal/plugin/markdown/marked.js",
72+
condition: function() {
73+
return !!document.querySelector("[data-markdown]");
74+
}
75+
},
76+
{
77+
src: "reveal/plugin/markdown/markdown.js",
78+
condition: function() {
79+
return !!document.querySelector("[data-markdown]");
80+
}
81+
},
82+
{ src: "reveal/plugin/highlight/highlight.js", async: true },
83+
{ src: "reveal/plugin/search/search.js", async: true },
84+
{ src: "reveal/plugin/zoom-js/zoom.js", async: true },
85+
{ src: "reveal/plugin/notes/notes.js", async: true }
86+
]
87+
});
88+
</script>
89+
</body>
90+
</html>

0 commit comments

Comments
 (0)