-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice1.html
43 lines (43 loc) · 1.41 KB
/
practice1.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wellcome</title>
<style type="text/css">
a{
background-color: black;
border: none;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.flex-container{
display: flex;
background-color: black;
}
.paragraph{
column-count: 3;
column-gap: 30px;
}
</style>
</head>
<body>
<center><h1>Header</h1>
<p>change the browser windows to see the resposive</p></center>
<div class="flex-container">
<a href="#">Home</a>
<a href="#">Service</a>
<a href="#">Product</a>
<a href="#">Gallery</a>
<a href="#">Contact</a>
</div><br>
<div class="paragraph">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</div><br>
<footer>All right reserved © </footer>
</body>
</html>