-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_prop.html
More file actions
46 lines (43 loc) · 1.57 KB
/
css_prop.html
File metadata and controls
46 lines (43 loc) · 1.57 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS properties</title>
<style>
body { background-color: black;
background-image: url("/Test/del@HacSociety.png");
background-repeat: no-repeat;
background-position-x: 230px;
background-position-y: 50px;
background-attachment: fixed;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-style: oblique;
font-size: large;
text-align: right;
text-shadow: 2px 2px 2px gray;}
h1{color: rgb(33, 253, 33);
text-decoration: underline;}
p{color: rgb(33, 253, 33);
text-transform: uppercase;}
div{
padding: 15px;
border: 5px solid rgb(33, 253, 33);
color: rgb(33, 253, 33);
margin: 30px;
text-align: left;
width: 400px;
}
</style>
</head>
<body>
<h1>Properties of CSS</h1>
<p>In this we are using different types of css properties</p>
<div style="margin-left: 10px;">
1. Dont give a f*** if you cant understand that shit. <br>
2. I prefer bros over girls. <br>
3. Never forgot your roots. <br>
</div>
</body>
</html>