-
Notifications
You must be signed in to change notification settings - Fork 0
/
College_website.html
152 lines (124 loc) · 3.83 KB
/
College_website.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<html>
<head>
<title>Atharva college of Engineering</title>
<style>
body{
background-image: url("https://cdn.pixabay.com/photo/2014/05/02/23/52/castle-336498_960_720.jpg ");
background-size: cover;
width: 100%;
}
nav{
align-content: center;
color:black;
opacity: 1;
}
ul{
margin: 0px;
padding: 0px;
list-style: none;
}
ul li{
width: 193px;
height: 40px;
float: left;
background-color: black;
opacity:1;
line-height: 40px;
text-align: center;
font-size: 15px;
}
ul li a{
text-decoration: none;
color: white;
display: block;
}
ul li a:hover{
background-color: orange;
}
ul li ul li{
display: none;
}
ul li:hover ul li{
display: block;
}
header{
text-align:center;
text-decoration: orange;
font-family: 'Georgia';
font-size: 20px;
color: orange;
}
.menu{
width: 100%;
}
.text{
width: 100%;
margin-top: 250;
text-transform: uppercase;
text-align: center;
}
.text h1{
font-size: 60px;
font-family: 'Source Serif Pro', serif;
}
.text h2{
font-family: 'MedievalSharp', cursive;
font-size: 15px;
margin: 14px 0px;
}
</style>
</head>
<body>
<div class="wrapper">
<header>
<h1>Atharva College of Engineering</h1>
</header>
<nav>
<div class="bgimg">
<div class="menu">
<ul>
<li><a>HOME</a></li>
<li>
<a>About us</a>
<ul>
<li><a>About Atharva</a></li>
<li><a>Vision and Mission </a></li>
<li><a>Founder's message</a></li>
<li><a>Principle's Desk</a></li>
</ul>
</li>
<li>
<a>Courses</a>
<ul>
<li><a>Computer Engineering</a></li>
<li><a>Information Technology</a></li>
<li><a>Electrical Engineering</a></li>
<li><a>Electronic's Engineering</a></li>
<li><a>Applied Science & Humanities</a></li>
<li><a>Electronics and Telecommunication Engineering</a></li>
</ul>
</li>
<li><a>Placements</a></li>
<li><a>Academic Calendar</a></li>
<li><a>Alumni</a></li>
<li>
<a>Contact us</a>
<ul>
<li><a>022-4925 9500</a></li>
<li><a>ace@atharvaeducation.com</a></li>
<li><a>Fax-40294911</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="text">
<h2>Approved by AICTE, DTE Code EN3203</h2>
<h1>Affiliated to Mumbai University</h1>
<h2>NAAC Accredited 2018</h2>
</div>
</div>
</body>
</body>
</html>