-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
134 lines (113 loc) · 2.3 KB
/
about.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<html>
<head><meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-image: url("back1.jpg");
background-size: cover;
background-repeat: no-repeat;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
min-height: 100vh;
}
.navbar {
display: flex;
justify-content: space-between;
padding: 10px;
}
.logo {
text-align: center;
margin-top: 20px;
}
.pic a {
margin: 20px;
}
.navbar {
background-color: #321C17;
color: #fff;
display: flex;
justify-content: space-between;
padding: 10px;
align-items: center;
}
.brand h1 {
margin: 0;
padding: 0;
}
.menu a {
color: #fff;
text-decoration: none;
margin-left: 10px;
}
.logo {
display: flex;
justify-content: center;
padding: 20px 0;
}
.pic {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.pic img {
margin: 10px;
}
footer {
background-color:#321C17;
color: #fff;
text-align: center;
padding: 10px;
font-weight: bold;
}
.menu a:hover{
color: orange;
}
/* Responsive Styles */
@media screen and (max-width: 600px) {
.navbar {
flex-direction: column;
align-items: center;
}
.menu a {
margin: 10px 0;
color: #fff
}
.pic img {
width: 100%;
height: auto;
}
.logo img {
width: 50%;
height: auto;
}
}
.abt{
background-color: rgba(153, 153, 153, 1.0);
border: 2px solid white;
text-align: center;
margin-top: 50px;
}
p{
font-size: larger;
color: white;
}
</style>
</head>
<body>
<div class="navbar">
<div class="brand">
<h1>THAILA</h1>
</div>
<div class="menu">
<a href="index.html"> ➯ HOME</a>
<a href="service.html"> ➯ PRODUCTS</a>
<a href="about.html"> ➯ ABOUT</a>
<a href="contact.html"> ➯ CONTACT</a>
</div>
</div>
<div class="abt">
<p>Since 2023 published in markets. The productions takes place at Kumbala near Kasargod</p>
</div>
<footer>COPYRIGHTED © @2023 FROM RESPECTED OWNERS</footer>
</body>
</html>