-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (59 loc) · 2.39 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!-- main css -->
<link rel="stylesheet" href="./css/style.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Flashcard Project</title>
<style>
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-11 col-lg-6 my-3">
<h3 class="text-capitalize">flashcards</h3>
<button class="btn text-capitalize my-2 show-btn" id="show-btn">add question</button>
<div class="card card-body my-3 question-card">
<!-- close btn -->
<a href="#" class="close-btn mt-0">
<i class="fas fa-window-close"></i>
</a>
<!-- end of close btn -->
<div class="feedback alert w-75 text-capitalize">
customer feedback
</div>
<form id="question-form">
<!-- single input -->
<h5 class="text-capitalize">question</h5>
<div class="form-group">
<textarea class="w-100" id="question-input" rows="3"></textarea>
</div>
<!-- end of single input -->
<!-- single input -->
<h5 class="text-capitalize">answer</h5>
<div class="form-group">
<textarea class="w-100" id="answer-input" rows="3"></textarea>
</div>
<!-- end of single input -->
<button type="submit" class="btn submitBtn text-capitalize w-50">save</button>
</form>
</div>
</div>
</div>
<div class="row px-2" id="questions-list" >
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<!-- script js -->
<script src="./js/index.js"></script>
</body>
</html>