-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
46c830a
commit a5f1dc9
Showing
3 changed files
with
52 additions
and
8 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
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,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<h1>Contact Us</h1> | ||
</header> | ||
|
||
<form action="#" method="post"> | ||
<label for="name">Name:</label> | ||
<input type="text" id="name" name="name" placeholder="Your Name"><br><br> | ||
|
||
<label for="email">Email:</label> | ||
<input type="text" id="email" name="email" placeholder="Your EmailID"><br><br> | ||
|
||
<label for="message">Message:</label> | ||
<textarea id="message" name="message" placeholder="Your Message" rows="4" cols="50"> </textarea><br><br> | ||
<input type="submit" value="Submit"> | ||
|
||
</form> | ||
</body> | ||
|
||
</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 |
---|---|---|
@@ -1,22 +1,35 @@ | ||
<html> | ||
|
||
<head> | ||
<title>My new Learning</title> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<h1>Heading1</h1> | ||
<h2>Heading2</h2> | ||
<h3>Heading3</h3> | ||
<h1>JIT HTML</h1> | ||
</header> | ||
<main> | ||
<div> | ||
<img src="https://picsum.photos/200/300" alt="random image"> | ||
<img src="https://picsum.photos/400/300" alt="random image"> | ||
<h2>This is my first page</h2> | ||
<p>Lets get this</p> | ||
<a href="https://www.google.com">Google</a> | ||
<a href="https://www.google.com">Google</a><br><br> | ||
</div> | ||
<div> | ||
<form action="#" method="post"> | ||
<label for="name">Name:</label> | ||
<input type="text" id="name" name="name" placeholder="Your Name"><br><br> | ||
|
||
<label for="email">Email:</label> | ||
<input type="text" id="email" name="email" placeholder="Your EmailID"><br><br> | ||
|
||
<label for="message">Message:</label> | ||
<textarea id="message" name="message" placeholder="Your Message" rows="4" cols="50"> </textarea><br><br> | ||
<input type="submit" value="Submit"> | ||
</form> | ||
</div> | ||
</main> | ||
<footer> | ||
<p>Copyright © 2024</p> | ||
</footer> | ||
</body> | ||
</html> | ||
<!-- This is comment --> |