-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDifferentUnits.html
54 lines (50 loc) · 1.27 KB
/
DifferentUnits.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= , initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.background {
background: url(./sea.jpg) center center no-repeat;
background-size: cover;
height: 100vh;
display: flex;
flex-direction: column;
color: rgb(5, 1, 58);
align-items: center;
padding: 10rem;
}
h1{
margin-bottom: 1rem;
font-size: 3rem;
}
p{
font-size: 2rem;
letter-spacing: 2px;/*harf aralıgı*/
}
@media(max-width:500px){
h1{
margin-bottom:0.5rem;
font-size: 2rem ;
}
p{
font-size: 1rem;
display: none;/*yazı kapanır*/
}
}
</style>
</head>
<body>
<div class="background">
<h1>Welcome To The Site</h1>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Cum, dolores.</p>
</div>
</body>
</html>