-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_1.html
More file actions
37 lines (30 loc) · 861 Bytes
/
Basic_HTML_1.html
File metadata and controls
37 lines (30 loc) · 861 Bytes
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
<!DOCTYPE html>
<html lang=en>
<head>
<title>This is the Title tab</title>
<meta charset="utf-8">
<body>
<p>
<font color="cyan">This is awesome</font>
<br>
<font color="#00FFFF">This is awesome</font>
<br>
<font color="purple" face="Ariel Back" size="2">
This purple text is written in Ariel Black.
</font>
<br>
<font color="#2E8B57" face="Comic Sans MS" size="4">
This seagreen text is written in Comic Sans MS.
</font>
<br>
<font color="#ADFF2F" face="Impact" size="6">
This greenyellow text is written in Impact.
</font>
</p>
<p><b>This is bold,</b><i>This is italicised</i> and <u>This is underlined</u> </p>
<img src="https://parkers-images.bauersecure.com/wp-images/445476/static-exterior/675x450/088-audi-q3-sportback-static.jpg"> alt="Audi Q3 Picture">
</p>
</body>
</html
<script src="Basic_Javascript_1.js"></script>
</html>