-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtut30.html
43 lines (39 loc) · 1.26 KB
/
tut30.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#firstpara
{
height:300px;
width: 500px;
border: 2px solid red;
background-image: url('tzicon1.png');
/* background-repeat: repeat-x; */
/* background-repeat: repeat-y; */
background-repeat: no-repeat;
/* background-position: center center; */
/* background-position: center top; */
/* background-position: center right; */
/* background-position: center bottom; */
/* background-position: center left; */
/* background-position: top left; */
/* background-position: top right; */
/* background-position:bottom right ; */
/* background-position: bottom left; */
/* background-position: 35px top; */
/* background-position: 35px 35px; */
}
</style>
</head>
<body>
<div>
<h3>This is my heading</h3>
<p id="firstpara">
This is my paragraph.
</p>
</div>
</body>
</html>