Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTML reading #52

Merged
merged 3 commits into from
Aug 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update the HTLM form
ranjith-ka committed Aug 6, 2024
commit a5f1dc950a28e173466d45ff2e6affc112cd5e88
4 changes: 3 additions & 1 deletion minikube/web-development/Readme.md
Original file line number Diff line number Diff line change
@@ -6,4 +6,6 @@ Tutorial for Web Development

- <https://www.youtube.com/watch?v=Ow_DLQ1oWWg>
- <https://www.youtube.com/watch?v=FYErehuSuuw> - Arun refrence link
- <https://www.frontendmentor.io/>
- <https://www.frontendmentor.io/>

## HTML
29 changes: 29 additions & 0 deletions minikube/web-development/contact.html
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>
27 changes: 20 additions & 7 deletions minikube/web-development/index.html
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 &copy; 2024</p>
</footer>
</body>
</html>
<!-- This is comment -->