-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 loc) · 2.14 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
<!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>Ionic Quiz Project</title>
<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css" />
<script src="app.js" defer></script>
</head>
<body>
<ion-app>
<ion-header>
<ion-toolbar color="dark">
<div class="ion-text-center">
<ion-title>Ionic Quiz</ion-title>
</div>
</ion-toolbar>
</ion-header>
<ion-content class="ion-padding">
<ion-item>
<ion-label position="floating">1. What comes after number 2?</ion-label>
<ion-input id="answer-1"></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating">2. What is the number before 5?</ion-label>
<ion-input id="answer-2"></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating">3. What's known as the Pearl of the Orient? </ion-label>
<ion-input id="answer-3"></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating">4. What is the most popular social media site? </ion-label>
<ion-input id="answer-4"></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating">5. What is the framework used for this website?</ion-label>
<ion-input id="answer-5"></ion-input>
</ion-item>
<ion-button expand="full" color="light">
<ion-icon slot="start" name="send-outline"></ion-icon>
Submit Your Answers
</ion-button>
<div id="result"></div>
</ion-content>
</ion-app>
</body>
</html>