-
Notifications
You must be signed in to change notification settings - Fork 4
/
buttonjs.html
32 lines (28 loc) · 1.31 KB
/
buttonjs.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
<!DOCTYPE html> <!--Common DOCTYPE Declaration for HTML 5-->
<!--<strong> is used around things you want to show up bold visually, but also semantically ie.
in search engines like Google or Bing when they parse your page, will see it as relevant and
important to what you're displaying... Like a list of facts about your product, or a large discount, etc.
<b> is used for visual effect on certain words or text that aren't as important.-->
<html>
<head>
<title>Two paragraphs</title>
<script src="js/script.js"></script>
</head>
<body>
<p>Normal Mixlaab</p>
<p><b> Bold Mixlaab</b></p> <!--<b> & <strong> both bold. Strong is important-->
<p><big>Big Mixlaab</big></p>
<p><i>Italian Mixlaab</i></p> <!--<i> & <em> both italic. Em is important-->
<p><small>Small Mixlaab</small></p>
<p><strong>Strong Mixlaab</strong></p>
<p>Below<sub>Subscripted Mixlaab</sub></p>
<p>Above<sup>Superscripted Mixlaab</sup></p>
<p><u>Inserted Mixlaab</u></p> <!--<ins> & <u> both underline-->
<p><s>Deleted Mixlaab</s></p> <!--<del> & <s> both strike-through-->
<p>H<sub>2</sub>O</p>
<p>x<sup>2</sup>+ y</p>
<button onclick="revealMessage()"> Click me Javi! </button>
<p id="hiddenMessage" style="display:none"> Mixlaab is a mexican company in development. </p>
<p>With the help of (line break): <br /> https://pages.github.com/</p>
</body>
</html>