-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.html
35 lines (34 loc) · 939 Bytes
/
program.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
<!DOCTYPE html>
<html>
<head>
<title>E-commerce site</title>
<style>
.box{
background-image: url('website.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
display: flex;
align-items: center;
height: 50vh;
padding-left: 20px;
color: white;
position: relative;
}
.box h1{
margin: 0px;
font-size: x-large;
text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}
body{
margin:0px;
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<div class="box">
<h1 id="row">E-commerce sites</h1>
</div>
</body>
</html>