Create contact.html
Browse files- contact.html +79 -0
contact.html
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
+
<title>PARROT - Contact</title>
|
7 |
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
|
11 |
+
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
|
12 |
+
<a class="navbar-brand" href="#">PARROT</a>
|
13 |
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
|
14 |
+
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
15 |
+
<span class="navbar-toggler-icon"></span>
|
16 |
+
</button>
|
17 |
+
<div class="collapse navbar-collapse" id="navbarNav">
|
18 |
+
<ul class="navbar-nav">
|
19 |
+
<li class="nav-item">
|
20 |
+
<a class="nav-link" href="index.html">Home</a>
|
21 |
+
</li>
|
22 |
+
<li class="nav-item">
|
23 |
+
<a class="nav-link" href="documentation.html">Documentation</a>
|
24 |
+
</li>
|
25 |
+
<li class="nav-item active">
|
26 |
+
<a class="nav-link" href="#">Contact</a>
|
27 |
+
</li>
|
28 |
+
</ul>
|
29 |
+
</div>
|
30 |
+
</nav>
|
31 |
+
|
32 |
+
<div class="container mt-5">
|
33 |
+
<div class="row">
|
34 |
+
<div class="col-lg-8">
|
35 |
+
<h1>Contact Us</h1>
|
36 |
+
<p>If you have any questions or want to share information about your AI model, please use the form below.</p>
|
37 |
+
|
38 |
+
<form action="#" method="post">
|
39 |
+
<div class="form-group">
|
40 |
+
<label for="name">Your Name</label>
|
41 |
+
<input type="text" class="form-control" id="name" name="name" required>
|
42 |
+
</div>
|
43 |
+
<div class="form-group">
|
44 |
+
<label for="email">Your Email</label>
|
45 |
+
<input type="email" class="form-control" id="email" name="email" required>
|
46 |
+
</div>
|
47 |
+
<div class="form-group">
|
48 |
+
<label for="inputDescription">Describe Your AI Model</label>
|
49 |
+
<textarea class="form-control" id="inputDescription" name="description" rows="5" required></textarea>
|
50 |
+
</div>
|
51 |
+
<div class="form-group">
|
52 |
+
<label for="inputInput">Input Details</label>
|
53 |
+
<input type="text" class="form-control" id="inputInput" name="input" required>
|
54 |
+
</div>
|
55 |
+
<div class="form-group">
|
56 |
+
<label for="outputOutput">Output Details</label>
|
57 |
+
<input type="text" class="form-control" id="outputOutput" name="output" required>
|
58 |
+
</div>
|
59 |
+
<div class="form-group">
|
60 |
+
<label for="trainingSetSize">Training Set Size</label>
|
61 |
+
<input type="text" class="form-control" id="trainingSetSize" name="trainingSetSize" required>
|
62 |
+
</div>
|
63 |
+
<div class="form-group">
|
64 |
+
<label for="numberOfEpochs">Number of Epochs</label>
|
65 |
+
<input type="text" class="form-control" id="numberOfEpochs" name="numberOfEpochs" required>
|
66 |
+
</div>
|
67 |
+
|
68 |
+
<button type="submit" class="btn btn-primary">Submit</button>
|
69 |
+
</form>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
|
74 |
+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
75 |
+
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
|
76 |
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
77 |
+
|
78 |
+
</body>
|
79 |
+
</html>
|