-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
157 lines (126 loc) · 5.35 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
154
155
156
157
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Presentation</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/solarized.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/monokai.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- 1st Slide -->
<section>
<h2>What I have Learnt So far.....</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</section>
<!-- End 1st slide -->
<!-- 2nd Slide -->
<section>
<!-- 1st vertical Slide of 2nd -->
<Section>
<h2>HyperText Markup Language</h2>
<div style="font-size: 25px;">
<p>This isn't actually not a programming language but a markup language with makes the base for the website.</p>
<p>It consists of the Tags which has different types of functions. They have right Angular Brackets on both sides of the Tagname.</p>
<p>The Current Version of HTML working is HTML 5.2 introduced in 2017.</p>
</div>
</Section>
<!-- 2nd Vertical Slide of 2nd -->
<section>
<h2>HTML 5.2 Super Powers</h2>
<div style="font-size: 25px;">
<ul>
<li> <p>Semantic Porgramming </p> <p>HTML enocurages Semantic Programming. Semantics refers to the meaning of a piece of code — for example … or “what purpose or role does that HTML element have” (rather than “what does it look like?”.).</p> </li>
<li> <p>More Focussed on Content</p> <p>In this way, They also reduce the overlapping in the front end languages like CSS, JavaScript.</p> </li>
</ul>
</div>
<a style="font-size: 23px;" href="https://rajvirs99.github.io/Gravity/">Click Here For Example</a>
</section>
</section>
<!-- End 2nd Slide -->
<!-- 3rd slide -->
<section>
<!-- 1st vertical slide of 3rd -->
<section>
<h2>Cascading StyleSheets</h2>
<div style="font-size:25px;">
<p> Also a Markup language used for the styling the webapage and it contents.</p>
<p> Makes the page more Stylish and Awesome.</p>
<p>The Current Version of CSS is 4.0 released in 2017.</p>
</div>
</section>
<!-- 2nd vetical slide of 3rd -->
<section>
<h2>Various CSS Features</h2>
<div style="font-size: 25px;">
<ul>
<li> <p>Grid</p> <p>CSS Grid makes the webpage more easy to configuring the responsiveness.</p> </li>
<li> <p>Animations</p> <p>Css Animations makes the webpages look lively.</p> </li>
<li> <p>Media Queries</p> <p>CSS Media Queries specifies the screen size of the webpage making the styling different for different screen sizes according to Pixels.</p> </li>
<li> <p>Parallax Effects</p> <p>CSS Parallax relies on the Transform and Perspective Properties making the elements move in the webpage while scrolling.</p> </li>
</ul>
</div>
<a style="font-size:23px;" href="https://rajvirs99.github.io/Huddle/"> Click Here For Example</a>
</section>
</section>
<!-- End 3rd slide -->
<!-- 4th slide -->
<section>
<!-- 1st vertical slide of 4th -->
<section>
<h2>JavaScript</h2>
<div style="font-size:25px;">
<p>Programming Language introduced to make the WebPages alive.</p>
<p>Scripts are made to give actions to various elements in the WebPage. They are executed as Plain text as they don't need any compiler like C++ or Java.</p>
<p>It is Very Different from Java as the language is based on the specifications of ECMAScript.</p>
</div>
</section>
<!-- 2nd vertical slide of 4th -->
<section>
<h2>Javascript can do like</h2>
<div style="font-size:25px;">
<ul>
<li>React to user actions, run on mouse clicks, pointer movements, key presses.</li>
<li>Get and set cookies, ask questions to the visitor, show messages.</li>
<li>can remember the data as in a local storage.</li>
<li>Can also Interact in the network by sending requests over the network by using server like Node.Js .</li>
</ul>
</div>
<a style="font-size:23px;" href="https://rajvirs99.github.io/TicTacToe/">Want to Play a Game, Click Here !</a>
</section>
</section>
</div>
</div>
<script src="js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'plugin/notes/notes.js', async: true },
{ src: 'plugin/highlight/highlight.js', async: true }
]
});
</script>
</body>
</html>