0% found this document useful (0 votes)
3 views3 pages

Dtyp

The document contains multiple HTML snippets, including a form for submitting a friend's name and a file, a JavaScript code for converting USD to ZIG, and a table layout for a weekly schedule. Each section serves a different purpose, from user input to data display. The overall structure demonstrates basic HTML form elements, scripting, and table formatting.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views3 pages

Dtyp

The document contains multiple HTML snippets, including a form for submitting a friend's name and a file, a JavaScript code for converting USD to ZIG, and a table layout for a weekly schedule. Each section serves a different purpose, from user input to data display. The overall structure demonstrates basic HTML form elements, scripting, and table formatting.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

<!

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>QUESTION 1</title>
</head>
<body>

Enter Name of your friend <input type="text" name="username" /> <br>


Choose the file you want to post to your friend <br>
<input type="text" name="username" />
<input type="file" name="file for friend" value="BROWSE"/> <br>
What does the file contain ? <br>
<input type="checkbox" /> image
<input type="checkbox" /> source code
<input type="checkbox" /> binary <br>

You have completed the form


<input type="button" value="SUBMIT QUERY" />
</body>
</html>

<!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>QUESTION 1</title>
</head>
<body>

Enter Name of your friend <input type="text" name="username" /> <br>


Choose the file you want to post to your friend <br>
<input type="text" name="username" />
<input type="file" name="file for friend" value="BROWSE"/> <br>
What does the file contain ? <br>
<input type="checkbox" /> image
<input type="checkbox" /> source code
<input type="checkbox" /> binary <br>
You have completed the form
<input type="button" value="SUBMIT QUERY" />
</body>
</html>

<!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>Question 3</title>

<script>
var usd=parseInt(prompt("Please enter the USD amount, Type here"));

var rate = 13.562;

var zig= rate*usd;

alert("The amount in ZIG is"+zig );

</script>

</head>
<body>

</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>

<style>
table, th, td{ border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr>
<th></th> <th>MONDAY</th> <th>TUESDAY</th> <th>WEDNES</th> <th
>THURSDAY</th> <th>FRIDAY</th>
</tr>
<tr>
<td>0900</td> <td>history</td> <td></td> <td></td> <td></td>
<td></td>
</tr>

<tr>
<td>0900</td> <td>history</td> <td></td> <td></td> <td></td>
<td></td>
</tr>

<tr>
<td>0900</td> <td>history</td> <td></td> <td></td> <td></td>
<td></td>
</tr>

<tr>
<td>0900</td> <td>history</td> <td></td> <td></td> <td></td>
<td></td>
</tr>

<tr>
<td>0900</td> <td>history</td> <td></td> <td></td> <td></td>
<td></td>
</tr>

<tr>
<td>0900</td> <td>history</td> <td></td> <td></td> <td></td>
<td></td>
</tr>
</table>

</body>
</html>

You might also like