-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut7.htm
47 lines (38 loc) · 1.14 KB
/
tut7.htm
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
<!-- formatting element in html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>java script tutorial </title>
</head>
<body>
<script src="/JAVA SCRIPT/tut1.js"></script>
<script src="/JAVA SCRIPT/tut2.js"></script>
<script src="/JAVA SCRIPT/tut3.js"></script>
<div class="container">
<div class="class">
<p> this is a paragraph </p>
</div>
</div>
<div class="">
<pre>
hey , im sunny
welcome back to my channel
this is a programs for formattaing element in html
</pre>
<b>this is a bold text </b> <br><br><br>
<strong>thios is a strong text </strong><br><br><br>
<i>this is a italic text </i><br><br><br>
<small>hey i'm small text </small><br><br><br>
<mark>i'm a marked text </mark><br><br><br>
<em>hey im a empahsized text </em><br><br><br>
<del>hey im a deletd text </del><br><br><br>
<ins>hey im a inserted text </ins>
<p>hey the squre of 2<sup>2</sup> is 4
</p>
<!-- similarly sub is used -->
</div>
</body>
</html>