Skip to content
Permalink
f653a7608f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
31 lines (18 sloc) 582 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Class 6</title>
<link rel="stylesheet" href="main.css">
</head>
<h1 class="h1" >Class 6 Notes:<h1>
<span id="span"> Form Capture n Stuff</span>
<body style= "background-color: lightblue;">
<script src="index.js"></script>
<form>
<div>
<input type="text" name="firstName" value="First Name"></div>
<div> <input type="text" name="lastName" value="Last Name"> </div>
<div> <input type="submit" value="Submit" onClick="submitForm()"> </div>
</form>
</body>
</html>