-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4cd4936
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<html> | ||
<head> | ||
<title>Sample Form</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
|
||
<body> | ||
|
||
<div id="body" > | ||
<form> | ||
|
||
<Label>Name </Label> | ||
<input type="text", id="field1", name ="name", size=50, value="" /><br /> | ||
<label>Address</label> | ||
<input type="text", id="field2" name="address", size=50, value="" /><br /> | ||
<label>Phone </label> | ||
<input type="text", id="field3", name="phone", size=40, value="" /><br /> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
<input type="Submit", value="Submit" /> | ||
<input type="reset", value="Cancel" /> | ||
|
||
</form> | ||
</div> | ||
|
||
</body> | ||
</head> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#body { | ||
background-color: #FF0000; | ||
border-style: solid; | ||
border-width: 10em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#body { | ||
background-color: #FF0000; | ||
} |
1 comment
on commit 4cd4936
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is testing the functionality of the git when trying to work it out...
I just wanted to test how the input type is going to be modifed.