-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse.html
100 lines (88 loc) · 4.22 KB
/
course.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AIIS</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,600,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="images/logo.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-close" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="course.html">COURSE</a></li>
<li><a href="contact.php">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<h1>Our Courses</h1>
</section>
<!---------- course ----------->
<section class="course">
<h1>Courses We Offer</h1>
<p>Al-Ameen Education Soceity offers:</p>
<div class="row">
<div class="course-col">
<h3>SCIENCE</h3>
<p>In science stream we offer Bachelor of Computer Applications[BCA], Bachelor of Science[BSc], Master of Science -Computer Science[MSc.cs], Bachelor of Pharmacy[B.Pharma].</p>
</div>
<div class="course-col">
<h3>COMMERCE</h3>
<p>In Commerce stream we offer Bachelor of Commerce[BCom], Master of Commerce[MCom], Bachelor of Business Administration[BBA], Master of Business Administration[MBA]. </p>
</div>
<div class="course-col">
<h3>ARTS</h3>
<p>In Arts stream we offer BA-History, Economics and Sociology. BA-Jornalism, Political Science and Optional English. BA-Psychology, Economics and Sociology.</p>
</div>
</div>
</section>
<!---------- Facilities ---------->
<section class="facility">
<h1>Our Facilities</h1>
<p>When we speak about equality you want to be playing on the best pitches with the best facilities. Hance Al-Ameen Education Society have many Facilities.</p>
<div class="row">
<div class="facility-col">
<img src="images/lab.jpg">
<h3>LAB</h3>
<p>A computer lab is a space where Compter services are provided to a defined community. Computer labs are generally multi-purpose for certain task and processes, depending on the needs of the Institution.</p>
</div>
<div class="facility-col">
<img src="images/room.jpg">
<h3>READING ROOM</h3>
<p>Great ambience and perfect place to study. Cabin is very comfortable with comfortable chairs with all the facilities.</p>
</div>
<div class="facility-col">
<img src="images/class.jpg">
<h3>CLASS ROOM</h3>
<p>Effective classroom management is incredibly important because without it you will not be able to create a learning environment that has a positive classroom culture.</p>
</div>
</div>
</section>
<!-------- footer ---------->
<section class="footer">
<h4>About Us</h4>
<p>Al-Ameen Institute Of Information Sciences<br>Hosur Road, Opp Lalbagh Main Gate, Bangalore-560027.</p>
<div class="icons">
<a href="https://www.facebook.com/share/ND7dymJ5MY3uvbSw/?mibextid=qi20mg"><i class="fa fa-facebook"></i></a>
<a href="https://wwww.instagram.com/alameen_degree_college?igsh=YXMxYzA2MXI2M3Bt"><i class="fa fa-instagram"></i></a>
</div>
<p>Made with <i class="fa fa-heart-o"></i> by itx_kabix</p>
</section>
<!----JavaScript for toggle menu---->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu() {
navLinks.style.right = "0";
}
function hideMenu() {
navLinks.style.right = "-200px";
}
</script>
</body>
</html>