-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
85 lines (70 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1024">
<title>JSpiders | Software training institute</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="index.css">
<!-- Bootstrap files = css + js -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8"
crossorigin="anonymous"></script>
<!-- font awesome for icons -->
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Ubuntu:wght@300;400;700&display=swap"
rel="stylesheet">
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img class="main-logo" src="./res/images/Jspider_logo.png">JSpiders</a>
<div class="nav-links">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./course.html">Courses</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</div>
</nav>
<h1>About Us</h1>
</section>
<section class="about-us">
<div class="row">
<div class="about-col">
<h1> LARGEST SOFTWARE TRAINING ORGANISATION</h1>
<p>
JSpiders is the world’s ace software course training organization with an aim to bridge the gap between the demands of the industry and the curriculum of educational institutions.
With centers across the Globe, the institute is a platform where young minds are given the opportunity to build successful careers.
”JSpiders is a place where businesses find talent and dreams take flight."
</p>
<a class="red-btn visit-btn" href="contact.html">EXPLORE NOW</a>
</div>
<div class="about-col">
<img src="../res/images/about.jpg">
</div>
</div>
</section>
<section class="footer">
<h4>About Us</h4>
<p>
”JSpiders is a place where businesses find talent and dreams take flight."
</p>
<div class="icons">
<i class="social-icons fab fa-twitter"></i>
<i class="social-icons fab fa-facebook-f"></i>
<i class="social-icons fab fa-instagram"></i>
<i class="social-icons fas fa-envelope"></i>
<p>© Copyright 2019 JSpiders</p>
</div>
</section>
</body>
</html>