Hands-on Project 9-1
(with all the source code you need)
***There is a link to the PROJECT zipped folder at the end of this file***
Crystal Indigo!
Crystal Indigo!
Providing all solutions you need anytime
+27 76 626 8187
***copy the code to your editor, run or open with a browser***
Note: do not submit as pdf , CHANGE name and date
, <!-- project09-01a.html -->
<!DOCTYPE html>
<html>
<head>
<!--
JavaScript 7th Edition
Chapter 9
Hands-on Project 9-1
Author: Crystal Indigo
Date: 05/08/2023
Filename: project09-01a.html
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Hands-on Project 9-1</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>
Hands-on Project 9-1
</h1>
</header>
<section>
<h1>Personal Greeting</h1>
<form method="get" action="project09-01b.html">
<fieldset>
<legend>Enter your personal greeting</legend>
<label for="to">To:</label>
<input name="to" id="to" type="text" />
<label for="from">From:</label>
<input name="from" id="from" type="text" />
<label for="msg">Message:</label>
<textarea name="msg" id="msg"></textarea>
</fieldset>
<input id="subButton" type="submit" value="SUBMIT" />
</form>
</section>
</body>
</html>