-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpartners.html
More file actions
117 lines (97 loc) · 4.76 KB
/
Copy pathpartners.html
File metadata and controls
117 lines (97 loc) · 4.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ByteWave Partners</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<script src="data.js" defer></script>
</head>
<body>
<div class="partners">
<nav class="navbar">
<img src="images/demo-logo.png" class="company-logo">
<ul>
<li><a href="index.html">Home</a>
<div class="about-menu-wrap" id="aboutMenu">
<div class="about-menu">
<hr>
<a href="index.html#aboutPage" class="about-menu-link">
<p>Founders</p>
<span>></span>
</a>
<a href="background.html" class="about-menu-link">
<p>Background</p>
<span>></span>
</a>
<a href="index.html#mission-page" class="about-menu-link">
<p>Mission</p>
<span>></span>
</a>
<a href="Exconsole.html" class="about-menu-link">
<p>Place an Order</p>
<span>></span>
</a>
</div>
</div>
</li>
<li><a href="partners.html">Partners</a></li>
<li><a href="filter.html">Search Restaurants</a>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="login.html" class="login">Log In</a></li>
<li><a href="signin.html">Sign In</a></li>
</ul>
</nav>
<div class="container">
</div>
<header>
<div class="applicationForm">
<h2 class="partnerh2">Interested in partnership? Business Inquiries?<h2>
<br>
<h4>Contact us here: bytewavebusiness@gmail.com<h4>
<br>
<h4> Or submit your application for partnership.<h4>
<div class="inputboxes">
<form action="">
<label for="appliName">Full Name:</label><br>
<input type="text" id="appliName" name="appliName"><br>
<label for="appliAddress">Address:</label>
<input type="text" id="appliAddress" name="appliAddress"><br>
<label for="appliEmail">Email:</label>
<input type="text" id="appliEmail" name="appliEmail"><br>
<label for="appliNum">Contact Number:</label>
<input type="text" id="appliNum" name="appliNum"><br>
<label for="appliComp">Company Name:</label>
<input type="text" id="appliComp" name="appliComp"><br>
<label for="appliDescri">Company Description:</label>
<input type="text" id="appliDescri" name="appliDescri"><br>
<label for="appliInter">Reason Of Interest:</label>
<input type="text" id="appliInter" name="appliInter"><br>
</div>
<br>
<label for="select">How did you learn about us?</label>
<br>
<select name="options" id="options">
<option value="advertisement">Select</option>
<option value="online">Online</option>
<option value="other corporations">Through other corporations</option>
<option value="browsing">Browsing Around</option>
<option value="browsing">Advertisement</option>
</select>
<div id="submitbutton">
<br>
<input type="submit" value="Submit">
</div>
</form>
<br>
<p>We should get back to you in 3 days in regards to your partnership.</p>
</div>
</header>
<button id="back-to-top">Back to Top</button>
<footer class="footer"><p>© 2024 ByteWave. All rights reserved.</p></footer>
</body>
</html>