-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfaqs.html
More file actions
131 lines (127 loc) · 6.29 KB
/
faqs.html
File metadata and controls
131 lines (127 loc) · 6.29 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!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>FAQs</h1>
</section>
<!---------------------------------------------------------------FAQs Content---------------------------------------------------------------->
<section class="faqs">
<div class="faq">
<div class="question">
<h1>What is ConnectUP?</h1>
<svg width = "25" height = "25" viewBox = "0 0 42 25">
<path
d = "M3 3L21 21L39 3" stroke = "#E8EAEC" stroke-width = "7" stroke-linecap = "round" fill="#23CFD6"></path>
</svg>
</div>
<div class="answer">
<br>ConnectUP is a one-stop platform for all stakeholders in the Startup ecosystem to interact amongst each other, exchange knowledge and form successful partnerships in a highly dynamic environment.
</div>
</div>
<div class="faq">
<div class="question">
<h1>How can I register on ConnectUp?</h1>
<svg width = "25" height = "25" viewBox = "0 0 42 25">
<path
d = "M3 3L21 21L39 3" stroke = "#E8EAEC" stroke-width = "7" stroke-linecap = "round" fill = "#23CFD6"></path>
</svg>
</div>
<div class="answer">
<br>Registering a profile on ConnectUP is a fairly simple process.
<br>• On clicking the Sign In tab on the top right hand corner of the page which you will be directed to our Sign Up page for authentication where you will be asked to fill details such as your name, email address, etc.
<br>• Sign in using the sign up credentials you created in step 1. This will direct you to ConnectUP where you can discover more about different startups.
</div>
</div>
<div class="faq">
<div class="question">
<h1>How do we connect to enablers after creating a profile?</h1>
<svg width = "25" height = "25" viewBox = "0 0 42 25">
<path
d = "M3 3L21 21L39 3" stroke = "#E8EAEC" stroke-width = "7" stroke-linecap = "round" fill = "#23CFD6"></path>
</svg>
</div>
<div class="answer">
<br>The system is built to connect you to your relevant stakeholders based on your industry and preferred stage. Under the profile of every enabler there will be an option to 'Connect'. Upon clicking, a request will be sent to the respective profile for acceptance. Once accepted, you will able to see the enabler as a new connection.
</div>
</div>
<div class="faq">
<div class="question">
<h1>Who can use this platform?</h1>
<svg width = "25" height = "25" viewBox = "0 0 42 25">
<path
d = "M3 3L21 21L39 3" stroke = "#E8EAEC" stroke-width = "7" stroke-linecap = "round" fill = "#23CFD6"></path>
</svg>
</div>
<div class="answer">
<br>Various types of users can use this platform.
Students, Freelancers, Professionals, Startups, and Investors can use this platform.
</div>
</div>
<div class="faq">
<div class="question">
<h1>How does this platform benefit me as a user?</h1>
<svg width = "25" height = "25" viewBox = "0 0 42 25">
<path
d = "M3 3L21 21L39 3" stroke = "#E8EAEC" stroke-width = "7" stroke-linecap = "round" fill = "#23CFD6"></path>
</svg>
</div>
<div class="answer">
<br>With this platform, you''ll generally be able to literally explore fairly many different types of features, including:
<br>• An easy-to-use platform for startups to connect with one another based on mutual interests.
<br>• It enables users to search for projects and domains according to their preference.
<br>• Comparing students, freelancers, startups, and investors with the help of ratings and reviews.
</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>