-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_1.html
More file actions
15 lines (15 loc) · 1007 Bytes
/
Copy pathBasic_HTML_1.html
File metadata and controls
15 lines (15 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<html>
<script src="Basic_JavaScript_1.js"></script>
<body>
<p> <font color="red"> This is the a test for font color using the color name. </font> </p>
<p> <font color="006400"> This is the test for font color using the Hex code. </font> </p>
<p> <font face="Arial"> This is the test for font type. </font> </p>
<p> <font size="2"> This is the test for font size 2. </font> </p>
<p> <font size="4"> This is the test for font size 4. </font> </p>
<p> <font size="6"> This is the test for font size 6. </font> </p>
<p> <font color="coral" face="Calibri" size="3"> This is the test for font color, type and size 3 alltogether. </font> </p>
<p> <b> this is bold </b> <i> this is Italic <i/> and <u> This is underlined </u> </p>
<p> <font color="black" face="Calibri" size="3"> This is the test for font color, type and size and bold, and italic. <b></b> <i> </i> </font> </p>
<img src="C:/Users/arash/OneDrive/Desktop/Website/Images/Goldfish.JPG" alt ="This is the alt for the image">
</html>