-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3. background.html
More file actions
31 lines (31 loc) · 2.04 KB
/
Copy path3. background.html
File metadata and controls
31 lines (31 loc) · 2.04 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>Background Property</title>
<style>
/* h1 {
background-color: chocolate;
color: rgb(19, 48, 209);
}*/
.background {
background-image: url("Images/img.jpeg");
background-repeat: no-repeat;
background-size: 800px;
background-position:inherit;
background-attachment: fixed;
height: 1000px;
width: 1000px;
}
</style>
</head>
<body>
<div class="background">
<h1>This is the main heading</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse minima distinctio in dicta totam autem nam, repellat, excepturi nulla, libero porro voluptatibus? Natus voluptatum ratione exercitationem officiis, libero tempore quos aperiam amet aut incidunt minus pariatur deleniti alias blanditiis ipsam repudiandae cum id nulla nihil nisi maxime explicabo magni consectetur similique! Autem voluptas eveniet consequatur maiores vel officiis! Saepe velit ex quisquam vel repellendus numquam natus omnis! Natus, rerum. Possimus fuga aperiam qui eum doloremque exercitationem eveniet, commodi tempore rem enim reiciendis dolor voluptatibus tempora libero esse veritatis laboriosam illum repellat obcaecati? Voluptatum nam, velit at porro quam deleniti minima!</p>
<p>My name is Muhammad Sabtain Khan. I am a web developer and have skills in Python,
C++. I have created many projects in my company, BrainX Technologies. Our interns are from PAF-IAST University, one of the best in Pakistan. These students will get job opportunities abroad. It's just a joke, apart from that. This language is HTML, and we wrote this paragraph to learn CSS and had a great experience in software technologies. Pakistan is one of the best countries in the world right now, and we are proud to live here in Pakistan...</p>
</div>
</body>
</html>