forked from Slytherin33/WebCollections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
57 lines (55 loc) · 1.93 KB
/
courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/collegewebsite.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>courses</title>
</head>
<body>
<nav class="navlist">
<ul>
<li><h4>SXC</h4></li>
<li><a href="./collegewebsite.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./courses.html">Courses</a></li>
<li> <a href="./contactus.html">Contact us</a></li>
</ul>
</nav>
<div class="main-box">
<h1> Our Courses</h1>
<p>World's best engineering college</p>
</div>
<br>
<div class="header">
<div class="row">
<div class="column">
<a href=""><img src="./images/computer.jpg"></a>
<a href="">Computer Science Engineering</a>
</div>
<div class="column">
<a href=""><img src="./images/electrical.jpg"alt=""></a>
<a href="">Electrical Engineering</a>
</div>
<div class="column">
<a href=""><img src="./images/chemical.jpeg" alt=""></a>
<a href="">Chemical Engineering</a>
</div>
</div>
<div class="row">
<div class="column">
<a href=""><img src="./images/civil-engineering.jpg" alt=""></a>
<a href="">Civil Engineering</a>
</div>
<div class="column">
<a href=""><img src="./images/biotechnology.jpg" alt=""></a>
<a href="">Biotechnology Engineering</a>
</div>
<div class="column">
<a href=""><img src="./images/mech.jpg" alt=""></a>
<a href="">Mechanical Engineering"</a>
</div>
</div>
</body>
</html>