-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion_css.html
More file actions
executable file
·42 lines (42 loc) · 2.35 KB
/
question_css.html
File metadata and controls
executable file
·42 lines (42 loc) · 2.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Dev Quiz - Kevin Meldau</title>
<meta name="description" content="dev Quiz" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link media="all" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" media="screen" href="css/style.css" />
<script defer src="js/main_css.js"></script>
</head>
<body>
<div class="container-2-col">
<div class="container-split">
<div class="content-left">
<h3>Assessing your CSS skills...</h3>
<p class="text-special">You've scored <span id="results">1</span> out of <span id="numberOfQuestions"></span></p>
<div class="question-container" id="css_quiz">
<button class="btn btn-submit" id="submit">SUBMIT</button>
<div class="next-btn-container">
<a class="btn btn-next" id="nextBtn" onClick="window.location.reload()">next question<i class="fa fa-long-arrow-right margin-sides-sm"></i></a>
</div>
</div>
</div>
<div class="content-right hide" id="contentRight">
<h3>You got this one wrong</h3>
<p class="text-special">We’ve got you!</p>
<p id="incorrect_explanation">The <span class="text-bold"><a></span> tag defines a hyperlink, which is used to link from one page to another. The most important attribute of the <span class="text-bold"><a></span> tag is the href attribute, which indicates the link's destination.</p>
<p class="text-bold">We’ve put together some link(s) to resources that we think could help you:</p>
<ul id="resources">
<li><a href="https://www.w3schools.com/" target="_blank"><span class="text-bold">W3 Schools</span> - w3schools.com</a></li>
<li><a href="https://developer.mozilla.org/en-US/" target="_blank"><span class="text-bold">Mozilla</span> - developer.mozilla.org</a></li>
<li><a href="https://css-tricks.com/" target="_blank"><span class="text-bold">CSS Tricks</span> - css-tricks.com</a></li>
</ul>
<div class="quote-container">
<p class="quote text-special" id="quote"></p>
<p class="quote-author text-bold" id="author"></p>
</div>
</div>
</div>
</body>
</html>