-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode4.html
More file actions
31 lines (29 loc) · 1.17 KB
/
code4.html
File metadata and controls
31 lines (29 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Turtorial</title>
<link rel="stylesheet" href="style.css">
<!--the above linking of style.css file gets overwritten by the css style part below-
instead of linking anotger css file we can inlude it within the style tag -->
<style>
body{
background-color:#914ecf;
color:aliceblue;
text-align:center;
}
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Obcaecati id ullam quo amet tenetur enim eos dolorum voluptatibus quia aliquid?</p>
<p>whatuasda sdasdasdasdasd asdasd asdasd asdasda sdasdasd</p>
<p style = "
text-align:left;
background-color:rgb(205, 119, 14);"
>asdasasdaads asdasd</p>
<!--hovering over a text shows the abbreviation of the shortform
like asap ...hovering over it will show "As soon as possible"...like that syntax = <abbr title = "(abbreviation name)">....(text whose abbreviation needs to be done)....</abbr>-->
<abbr title = "As Soon As Possible">ASAP!!!</abbr>
</body>
</html>