-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTUT16.html
54 lines (46 loc) · 1.68 KB
/
TUT16.html
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
47
48
49
50
51
52
53
54
<!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>background color, width,height,border</title>
<style>
#one{
background-color: yellow;
height: 100px;
width: 455px;
border-style: double;
border-color: black;
border-width: 5px;
border-top-right-radius: unset;
}
#two{
background-color: rgb(209, 16, 16);
height: 100px;
width: 455px;
border-radius: 0vmax ;
border-style: double;
border-color: black;
border-width: 5px;
border-top-right-radius: unset;
background-image: url('https://www.google.com/imgres?imgurl=https%3A%2F%2Fchennai.vit.ac.in%2Fwp-content%2Fuploads%2F2020%2F10%2Fvitlogo.png&imgrefurl=https%3A%2F%2Fchennai.vit.ac.in%2Facademics%2Flibrary%2Frulesreg%2F&tbnid=LKTaEZuzgMHsxM&vet=12ahUKEwjXhdf8y_L8AhXVALcAHUitAgkQMygQegUIARDVAQ..i&docid=KrHjs9JuH-AFjM&w=248&h=113&q=vit%20rules%20and%20regulations&ved=2ahUKEwjXhdf8y_L8AhXVALcAHUitAgkQMygQegUIARDVAQ');
}
#third{
border-width: 80px;
height:700px;;
width: 550px;
background-image: url('https://picsum.photos/200/300');
border: 2px,solid,red;
background-repeat: no-repeat;
/* background-position: center; */
}
</style>
</head>
<h1>WE will learn different designing terminologies</h1>
<p id="one"> I will here as a example!!!</p>
<p id="two"> I will here as a example!!!</p>
<p id="third"> I will here as a example!!!</p>
<body>
</body>
</html>