-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (41 loc) · 1.6 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
<!DOCTYPE HTML>
<html>
<head>
<title>new agnostic</title>
<meta charset = "UTF-8">
</head>
<!--
NOTE:
===============================================================================================
Because of simplicity & demonstration purposes, the "style" attribute is used within html tags.
Nevertheless it is recommended to use CSS for styling.
In '<body>' the 'style="text-align:center;"'
centers similar like the tag '<center>' which was used in previous mini-projects.
===============================================================================================
-->
<body style="text-align:center; margin-left: auto; margin-right:auto;">
<section>
<div>
<img id="picture" src="Start.jpg">
</div>
<button type="button" style="background-color:yellow;" onclick="noStrict();"> NO STRICT </button>
<button type="button" style="background-color:orange;" onclick="withStrict();"> STRICT </button>
<button type="button" style="background-color:green;" onclick="alternative();"> ALTERNATIVE </button>
<p>Please, also open debugger by pressing F12!</p>
<div id="message" style="display:inline; height:10px; width:10px; border: magenta solid 1px;">
Information
</div>
</section>
<section>
<hr width="50%">
<br>
<br>
For more explanation please visit -
<a href = "https://github.com/Incrementis/Javascript-new-agnostic/wiki">
new agnostic Wiki</a>
</section>
</body>
<footer>
<script language = "javascript" type = "text/javascript" src = "new.js"></script>
</footer>
</html>