-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-test.html
More file actions
88 lines (77 loc) · 2.15 KB
/
Copy pathmodule-test.html
File metadata and controls
88 lines (77 loc) · 2.15 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
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
header {
background-color: #667;
padding: 30 px;
text-align: center;
font-size: 35px;
color: white;
}
.column {
float: left;
width: 20%;
padding: 5px;
height: 300px;
}
.column2 {
float: left;
width: 80%;
padding: 5px;
height: 300px;
color: #700;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
body {
background-color: black;
}
footer {
background-color: #667;
padding: 10px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<header>
<h1><img src="vvce-logo.png" width="100" height="100" alt="logo" /> Vidyavardhaka College of Engineering</h1> <input type="button" value="sign up" align="right">
</header>
<div class="row">
<div class="column" style="background-color:#aaa;">
<h2>Courses offered by VVCE</h2>
<ol>
<li>ME</li>
<li>CS</li>
<li>EE</li>
<li>EC</li>
<li>IS</li>
<li>CV</li>
</ol>
</p>
</div>
<div class="column2" style="background-color:#bbb;">
<h2>Our Pride, Our VVCE!</h2>
<p>Established in 1997, VVCE is an autonomous institute affiliated to Visvesvaraya Technological University (VTU), Belagavi, approved by AICTE & UGC, New Delhi and recognized by Govt. of Karnataka. Five UG programs are accredited by National Board of Accreditation, New Delhi. VVCE is also accredited by NAAC with “A” grade. VVCE offers six UG programs, three PG programs and nine Research Centres for pursuing PhD programs, with a total student population of over 3200. The college has excellent infrastructure coupled with qualified and passionate faculty team to provide a perfect learning ambience. The college is under the able leadership of Dr. B. Sadashive Gowda, PhD (IISc) as Principal, who has rich experience in industry and education fields both in India and abroad.</p>
<img src="vibha.png" width="100px" height = "100" alt="Vibha">
</div>
</div>
<footer>
<p>Developed by Vibha Prasad</p>
</footer>
</body>
</html>