-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dom Mini Task</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Dom Mini Tasks</h1>
<a href="./Q1.html" target="_blank"
>Color a span/div element content when a user moves the mouse over the
element.</a
><br>
<a href="./Q2.html" target="_blank"
>Use prompt to read a value from user and display it in the span element.
</a><br>
<a href="./Q3.html" target="_blank"
>Display the mouse X and Y coordinates in a span tag when you click on a
h1 tag which contains a paragraph.</a
><br>
<a href="./Q4.html" target="_blank"
>Write a Javascript code for character counts in the textarea</a
><br>
<a href="./Q5.html" target="_blank"
>Convert a given number from decimal to binary or hexadecimal
</a><br>
<a href="./Q6.html" target="_blank"
>With Javascript write a simple from validation</a
><br>
<a href="./Q7.html" target="_blank"
>In your HTML Add two buttons, where first button action for full screen
mode and the second button for exit from full screen mode.</a
><br>
<a href="./Q8.html" target="_blank"
>When user press any key in your html page show a alert that Invalid Key
Pressed, but when user press spacebar show an alert Thank You..!! and
close the current window.</a
><br>
<a href="./Q9.html" target="_blank"
>When a cursor is moved over an content, allow the user to edit the
content in HTML page.
NOTE: Input element should not be used.</a
><br>
</div>
</body>
</html>