-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-css.html
More file actions
executable file
·45 lines (38 loc) · 1.71 KB
/
html-css.html
File metadata and controls
executable file
·45 lines (38 loc) · 1.71 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Dive Into HTML and CSS | RED Academy</title>
<!-- CSS -->
<link rel="stylesheet" href="css/poole.css" type="text/css">
<link rel="stylesheet" href="css/syntax.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,100,100italic,400italic,700,700italic" type="text/css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-precomposed.png">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<!-- Remark scripts -->
<script src="//gnab.github.io/remark/downloads/remark-latest.min.js"></script>
<script>
var hljs = remark.highlighter.engine;
var slideshow = remark.create({
sourceUrl: 'markdown/html-css-v2.md',
highlightStyle: 'tomorrow-night-bright',
highlightLanguage: 'xml',
navigation: {
scroll: false
// , click: true
}
});
</script>
<!-- For embedding Tweets in slides -->
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</body>
</html>