-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
103 lines (101 loc) · 2.44 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
<!DOCTYPE html >
<html>
<head>
<title>IoT Project</title>
<style>
body{
margin: 0px;
}
.both{
background: url(ind.jpg);
margin: 0px;
text-align: center;
}
.header{
padding: 50px;
width: 100%;
height: 100px;
margin: 0px;
text-align: center;
vertical-align: middle;
}
.logo-box{
width: 230px;
height: 210px;
margin-left: 650px;
/*border: black;
border-style: solid;
background-color: paleturquoise;
vertical-align: middle;*/
}
.middle{
width: 100%;
height:40px;
background-color: mediumseagreen;
}
ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li{
float: left;
border-right: 1px solid #bbb;
}
li:last-child{
border right: none;
}
li a{
display: block;
color: white;
text-align: center;
padding: 11px 130px;
text-decoration: none;
}
li a:hover:not(.active){
background-color: #111;
}
.active{
background-color: #4caf50;
}
.form-box{
font-size: 25px;
text-align: justify;
vertical-align: middle;
background-image: url(industry.jpg);
background-position: center;
background-repeat: none;
height: 100%;
padding: 10px;
margin: 0px;
}
</style>
</head>
<body>
<div class="both">
<div class="header">
<center><h1 style="font-size: 60px;">VIDA INDUSTRY</h1></center>
<! <img class="vida-logo" src="vida1.jpg" alt="vida-img">
</div>
<div class="logo-box">
</div>
</div>
<div class="middle">
<ul>
<li><a href="mainpage.html">Home</a></li>
<li><a href="daily.html">Daily</a></li>
<li><a href="weekly.html">Weekly</a></li>
<li style="float: right"><a class="active" href="about.html">About</a></li>
</div>
<div class="form-box">
<center>
<h2>Contact </h2>
<h4>Arundhathi Janardhanan<br>+91 8943132513<br>[email protected]</h4>
<h4>Della Mani<br>+91 9497562023<br>[email protected]</h4>
<h4>Gopika Murali<br>+91 9074103061<br>[email protected]</h4>
<h4>Vishnu Anil<br>+91 8281260152<br>[email protected]</h4>
</center>
</div>
</body>
</html>