forked from jass2795/html-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss1.html
More file actions
28 lines (18 loc) · 722 Bytes
/
css1.html
File metadata and controls
28 lines (18 loc) · 722 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
<html>
<head>
<title>intro to css</title>
<link rel="stylesheet" href="css/style.css">
<style>
p{
color:green;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
</style>
</head>
<body>
<p style="color:green;">going to apply inline stylesheet </p>
<p>going to apply internal stylesheet</p>
<h1>this one is about external css style../...............</h1>
<img src="https://images.unsplash.com/photo-1509782642997-4befdc4b21c9?ixlib=rb-0.3.5&s=1128237690d3dd622f3d563ba9703d67&dpr=1&auto=format&fit=crop&w=525&q=60" alt="this is in case you dont see the image" title="hello">
</body>
</html>