-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle_format.html
More file actions
19 lines (17 loc) · 890 Bytes
/
Copy pathstyle_format.html
File metadata and controls
19 lines (17 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>Style and Format</title>
</head>
<body>
<h1 style="background-color:green;">Different Styles and Formats in HTML5</h1><br>
<i style="text-align: center;">This text should be italic</i><br>
<em style="color: blue;">This Text is Emphasized</em><br>
<mark style="font-size: larger;">This is how written text is marked</mark><br>
<del style="font-size: x-large;">Strikes a line through deleted text</del><br>
<ins style="font-size: xx-large;">Browser will usually underline inteserted text</ins><br>
<p>WWF's mission is to top the <em>degradation</em> of our planet's natural environment.</p>
<p style="text-align: center;">H<sub>2</sub>0</p>
<img src = "http://pngimg.com/uploads/water/water_PNG50234.png" alt="WATER IMAGE", width="1500px", height="300px">
</body>
</html>