Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shekar73 committed Sep 27, 2011
0 parents commit 4cd4936
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
27 changes: 27 additions & 0 deletions index.html
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.

Copy link
@shekar73

shekar73 Sep 28, 2011

Author Owner

I just wanted to test how the input type is going to be modifed.


<input type="Submit", value="Submit" />
<input type="reset", value="Cancel" />

</form>
</div>

</body>
</head>
</html>

5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#body {
background-color: #FF0000;
border-style: solid;
border-width: 10em;
}
3 changes: 3 additions & 0 deletions untitled.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#body {
background-color: #FF0000;
}

1 comment on commit 4cd4936

@shekar73
Copy link
Owner Author

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...

Please sign in to comment.