diff --git a/assets/logic.js b/assets/logic.js new file mode 100644 index 0000000..dfba0bf --- /dev/null +++ b/assets/logic.js @@ -0,0 +1 @@ +startScreenEl.setAtrribute('class','hide') // to hide an element \ No newline at end of file diff --git a/assets/questions.js b/assets/questions.js new file mode 100644 index 0000000..b118bb4 --- /dev/null +++ b/assets/questions.js @@ -0,0 +1,4 @@ +var = questions { + title:`Inside which HTML element do we put the JavaScript?`, + question:'' +} \ No newline at end of file diff --git a/assets/reset.css b/assets/reset.css new file mode 100644 index 0000000..dfbd513 --- /dev/null +++ b/assets/reset.css @@ -0,0 +1,138 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ +*{ + box-sizing: border-box; +} + +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +ruby, +section, +summary, +time, +mark, +audio, +video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +/* HTML5 display-role reset for older browsers */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section { + display: block; +} + +body { + line-height: 1; +} + +ol, +ul { + list-style: none; +} + +blockquote, +q { + quotes: none; +} + +blockquote:before, +blockquote:after, +q:before, +q:after { + content: ''; + content: none; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} \ No newline at end of file diff --git a/assets/score.js b/assets/score.js new file mode 100644 index 0000000..e69de29 diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..f0ab6db --- /dev/null +++ b/assets/style.css @@ -0,0 +1,15 @@ + +.jumbotron{ + align-content: center; +} +#quiz{ + text-align: center; + text-decoration: underline; + text-transform: capitalize; + color: red; +} +#questions{ + text-align: center; + text-transform: capitalize; + color:rgb(19, 28, 107); +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..11a33a3 --- /dev/null +++ b/index.html @@ -0,0 +1,113 @@ + + + + + + + + + + + Document + + + + +
+
+

The Quiz Slide-1

+

Inside which HTML element do we put the JavaScript?

+ + + + + +
+
+
+
+

The Quiz Slide-2

+

How do you write "Hello World" in an alert box?

+ + + + + +
+
+
+
+

The Quiz Slide-3

+

How do you create a function in JavaScript?

+ + + + + +
+
+
+
+

The Quiz slide-3

+

How to write an IF statement for executing some code if "i" is NOT equal to 5?

+ + + + + +
+
+
+
+

The Quiz slide-4

+

What is the correct way to write a JavaScript array?

+ + + + + +
+
+
+
+

The Quiz slide-5

+

Which event occurs when the user clicks on an HTML element?

+ + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file