-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (27 loc) · 893 Bytes
/
index.html
File metadata and controls
37 lines (27 loc) · 893 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add-qstion</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<section id="top">
<div class="add-question">
<button type="button" class="btn">ADD QUESTION</button>
</div>
</section>
<section id='second' >
<form id="add-section">
<input type="text" class="col-res" placeholder="What is your question">
<input type="text" class="col-res" placeholder="type answer here">
<button type="submit" class="add col-res">Add</button>
</form>
</section>
<section class="questions">
<h1 class="show-only-when">Ask question are:</h1>
</section>
<script src="index.js"></script>
</body>
</html>