-
Notifications
You must be signed in to change notification settings - Fork 0
/
Instructions.html
77 lines (67 loc) · 1.9 KB
/
Instructions.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
75
76
77
<body id = "body">
<div>
<h1 id = "h1">Instructions</h1>
<P id = "para3"> द्वारा Ved Prasad Bankeshwar <br/>
कक्षा : 10 <br/>
2021 - 22 <br/>
Anita Pandey द्वारा मार्गदर्शित</P>
<p id = "para2">1 points will be awarded for a correct answer and <br/>
1 point will be deducted for a wrong answer. <br/>
Drag and drop the words to the correct type.</p>
<br>
</br>
<p id = "para2">सही उत्तर के लिए 1 अंक दिए जाएंगे और गलत उत्तर <br/> के लिए 1 अंक काटा जाएगा। शब्दों <br/> को सही प्रकार पर खींचें और छोड़ें </p>
<br></br>
<br></br>
<button id = "inst_btn" onclick = "click3()"> Next </button>
</div>
</body>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
#body{
background-image: white;
background-size: 100%;
max-width:71%;
}
#img2{
}
#para2{
position: relative;
left:1%;
top: -10rem;
font-size: 2.5rem;
}
#para3{
position: relative;
left: 100%;
top: -2rem;
font-size: 1.5rem;
}
#h1{
position:relative;
left:40%;
font-size: 5rem;
font-weight: bold;
}
#inst_btn{
height:3rem;
width:12rem;
font-size: 2rem;
position:relative;
top:40%;
left:50%;
background-color: blue;
color:white;
border-radius: 5rem;
}
</style>
<script type="text/javascript">
var btn3 = document.getElementById("inst_btn");
function click3(){
a = document.createElement("a");
a.href = "./main.html";
a.click();
}
</script>
</head>