-
Notifications
You must be signed in to change notification settings - Fork 0
/
submit.html
42 lines (42 loc) · 1.84 KB
/
submit.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Undesign</title>
<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=Roboto+Mono:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="icon" href="images/logo.png">
<link rel="stylesheet" href="submitStyle.css">
<script src="https://kit.fontawesome.com/2acc2d4e2c.js" crossorigin="anonymous"></script>
<script src="script.js" defer></script>
</head>
<body>
<main>
<div class="container">
<div class="top-container">
<a href="index.html">
<img src="images/logo.png" alt="undesign">
<h2 class="link-title">Undesign</h2>
</a>
</div>
<div class="bottom-container">
<h1 class="container-title">Add a new resource</h1>
<p class="container-text">Submit your free resource. It will go through a review process before being published.</p>
<form action="index.html" autocomplete="off">
<label>Url of the resource <br>
<input type="text" placeholder="https://www.abc.com" required>
</label>
<label>Email (to recieve notification)<br>
<input type="email" placeholder="xyz@gmail.com" required >
</label>
<input type="submit" value="Submit">
</form>
</div>
</div>
</main>
<button class="theme-btn light"><i class="fa-solid fa-lightbulb"></i></button>
</body>
</html>