-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeat.html
More file actions
78 lines (69 loc) · 1.53 KB
/
meat.html
File metadata and controls
78 lines (69 loc) · 1.53 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<link href='css/bootstrap.css' rel='stylesheet'>
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<link rel='stylesheet' href='style.css'>
<style>
#rcorners {
background-color: #ffffff;
background-repeat: repeat;
opacity: 0.6;
padding: 10px;
width: 150px;
height: 100px;
border: 0px;
border-width: : 20px;
text-align: center;
}
.column {
-webkit-column-count: 4; /* Chrome, Safari, Opera */
-moz-column-count: 4; /* Firefox */
column-count: 4;
-webkit-column-gap: 10px; /* Chrome, Safari, Opera */
-moz-column-gap: 10px; /* Firefox */
column-gap: 10px;
}
</style>
</head>
<div class="jumbotron text-center">
<body>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="products.html">Products</a>
<a href="food.html">Food</a>
<a href="contacts.html">Contact</a>
<a href="share.html">Share</a>
</body>
<body>
<h1>Meat Product in Seasons</h1>
<table style="width:100%">
<tr>
<th id="rcorners">Winter</th>
<th id="rcorners">Spring</th>
<th id="rcorners">Summer</th>
<th id="rcorners">Autumn</th>
</tr>
</table>
<div class="column">
<p>Goose</p>
<p>Lamb</p>
<p>Pork</p>
<p>Venison</p>
<p>Lamb</p>
<p>Pork</p>
<p>Spring lamb</p>
<p>Wood pigeon</p>
<p>Grouse</p>
<p>Guinea fowl</p>
<p>Lamb</p>
<p>Pork</p>
<p>Duck</p>
<p>Beef</p>
<p>Pork</p>
<p>Lamb</p>
</div>
</body>
</div>
</html>