-
Notifications
You must be signed in to change notification settings - Fork 2
/
aboutus.html
77 lines (73 loc) · 3.11 KB
/
aboutus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="ConnectUp">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Reet Khare">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ConnectUp</title>
<link rel="stylesheet" href="CSS/style.css">
<script src="https://kit.fontawesome.com/d652b9f554.js" crossorigin="anonymous"></script>
<!-- <link rel="shortcut icon" type="image/jpg" href="./Images/favicon.png">-->
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="./Images/logo1.png" alt="Eduford Logo"></a>
<div class="nav-links" id="navLinks">
<i class="fas fa-times" onclick="hideMenu()"></i>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="aboutus.html">About Us</a>
</li>
<li>
<a href="signin.html">Sign In</a>
</li>
<li>
<a href="faqs.html">FAQs</a>
</li>
<li>
<a href="contactus.html">Contact Us</a>
</li>
</ul>
</div>
<i class="fas fa-bars" onclick="showMenu()"></i>
</nav>
<h1>About Us</h1>
</section>
<!------------------------------------------------------------About Us Content--------------------------------------------------------------->
<section class="about-us">
<div class="row">
<div class="about-col">
<h1>Our Mission</h1>
<p>To create a simplistic but world-wide nexus of contacts for startups and employees to facilitate communication and exchange of ideas.</p>
<br><br>
<h1>Our Vision</h1>
<p>We want to build the most reliable, efficient, trustworthy, yet simplistic platform for professional-to-professional networking among startups with the ultimate goal of encouraging self-employment.</p>
</div>
<div class="about-col">
<img src="./Images/about.jpg" alt="About Us">
</div>
</div>
</section>
<!-----------------------------------------------------------------Footer-------------------------------------------------------------------->
<section class="footer">
<hr>
<h4>About Us</h4>
<p>As the leading professional network for startups with the ultimate goal of fostering self-employment, we aim to be the most reliable, efficient, trustworthy yet simplistic platform for networking.</p>
<div class="icons">
<i class="fa fa-facebook"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-linkedin"></i>
</div>
<hr>
</section>
<script src="./JS/script.js"></script>
</body>
</html>