-
Notifications
You must be signed in to change notification settings - Fork 32
navya-html-projects #526
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
base: main
Are you sure you want to change the base?
navya-html-projects #526
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,26 @@ | ||||||
| <!DOCTYPE html> | ||||||
| <html lang="en"> | ||||||
|
|
||||||
| <head> | ||||||
| <meta charset="UTF-8" /> | ||||||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||||
|
|
||||||
| <title>HTML Assignments | Your Name</title> | ||||||
| </head> | ||||||
|
|
||||||
| <body> | ||||||
| <details> | ||||||
| <summary>Assignment 1</summary> | ||||||
| <iframe src="./project-1/personal-homepage.html" frameborder="0" width="100%"></iframe> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Suggested change
|
||||||
| </details> | ||||||
|
|
||||||
| <details> | ||||||
| <summary> | ||||||
| Assignment 2 | ||||||
| </summary> | ||||||
|
Comment on lines
+18
to
+20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||
| <iframe src="./project-2/product-landing_page.html" frameborder="0" width="100%"></iframe> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the previous iframe, the <iframe src="./project-2/product-landing_page.html" title="Assignment 2: Product Landing Page" style="border:0;" width="100%"></iframe> |
||||||
| </details> | ||||||
|
|
||||||
| </body> | ||||||
|
|
||||||
| </html> | ||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,68 @@ | ||||||
| <!DOCTYPE html> | ||||||
| <html lang="en"> | ||||||
|
|
||||||
| <head> | ||||||
| <meta charset="UTF-8"> | ||||||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||||||
| <title>My Personal Homepage</title> | ||||||
| </head> | ||||||
|
|
||||||
| <body> | ||||||
|
|
||||||
| <header> | ||||||
| <h1>My Personal Homepage</h1> | ||||||
| </header> | ||||||
|
|
||||||
|
|
||||||
| <section> | ||||||
| <h2>About Me</h2> | ||||||
| <p>Hello! I am Navya Jain, a Technical Consultant focused on making technology work for people.</p> | ||||||
| </section> | ||||||
|
|
||||||
| <section> | ||||||
| <h2>Education</h2> | ||||||
| <p>Bachelor of Engineering in Computer Science from Chandigarh University</p> | ||||||
| <p>Graduation Date: <time datetime="2025-06-01">June 2025</time></p> | ||||||
| </section> | ||||||
|
|
||||||
| <section> | ||||||
| <h2>Skills</h2> | ||||||
| <ul> | ||||||
| <li>HTML</li> | ||||||
| <li>Semantic HTML</li> | ||||||
| <li>Basic JavaScript</li> | ||||||
| <li>Problem Solving</li> | ||||||
| </ul> | ||||||
| </section> | ||||||
|
|
||||||
|
|
||||||
| <section> | ||||||
| <h2>Contact Me</h2> | ||||||
| <form action="#" method="post"> | ||||||
| <label for="name">Name:</label> | ||||||
| <input type="text" id="name" name="name" required> | ||||||
| <br><br> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using |
||||||
|
|
||||||
| <label for="email">Email:</label> | ||||||
| <input type="email" id="email" name="email" required> | ||||||
| <br><br> | ||||||
|
|
||||||
| <label for="dob">Date of Birth:</label> | ||||||
| <input type="date" id="dob" name="dob"> | ||||||
| <br><br> | ||||||
|
|
||||||
| <label for="message">Message:</label> | ||||||
| <textarea id="message" name="message"></textarea> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Suggested change
|
||||||
| <br><br> | ||||||
|
|
||||||
| <button type="submit">Send</button> | ||||||
| </form> | ||||||
| </section> | ||||||
|
|
||||||
| <footer> | ||||||
| <p>© Navya Jain. All rights reserved.</p> | ||||||
| </footer> | ||||||
|
|
||||||
| </body> | ||||||
|
|
||||||
| </html> | ||||||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,87 @@ | ||||||||
| <!DOCTYPE html> | ||||||||
| <html lang="en"> | ||||||||
|
|
||||||||
| <head> | ||||||||
| <meta charset="UTF-8"> | ||||||||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||||||||
| <title>Product Landing Page</title> | ||||||||
| </head> | ||||||||
|
|
||||||||
| <body> | ||||||||
|
|
||||||||
| <nav> | ||||||||
| <ul> | ||||||||
| <li><a href="#features">Features</a></li> | ||||||||
| <li><a href="#video">Video</a></li> | ||||||||
| <li><a href="#plans">Plans</a></li> | ||||||||
| <li><a href="#contact">Contact</a></li> | ||||||||
| </ul> | ||||||||
| </nav> | ||||||||
|
|
||||||||
|
|
||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||
| <header> | ||||||||
| <h1>TechGadget Pro</h1> | ||||||||
| <p>The ultimate solution to simplify your tech life.</p> | ||||||||
| </header> | ||||||||
|
|
||||||||
| <section id="features"> | ||||||||
| <h2>Product Features</h2> | ||||||||
| <p>TechGadget Pro is designed to make your daily tasks easier, faster, and smarter. It combines cutting-edge | ||||||||
| technology with user-friendly design.</p> | ||||||||
| <ul> | ||||||||
| <li>High-performance hardware</li> | ||||||||
| <li>Intuitive interface</li> | ||||||||
| <li>Seamless connectivity</li> | ||||||||
| <li>Affordable and flexible plans</li> | ||||||||
| </ul> | ||||||||
| </section> | ||||||||
|
|
||||||||
| <section id="video"> | ||||||||
| <h2>Product Video</h2> | ||||||||
| <iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="Product Video" | ||||||||
| frameborder="0" | ||||||||
|
Comment on lines
+41
to
+42
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Suggested change
|
||||||||
| allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" | ||||||||
| allowfullscreen> | ||||||||
| </iframe> | ||||||||
| </section> | ||||||||
|
|
||||||||
|
|
||||||||
| <section id="plans"> | ||||||||
| <h2>Product Plans</h2> | ||||||||
| <table border="1"> | ||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||
| <caption>Choose the right plan for you</caption> | ||||||||
| <thead> | ||||||||
| <tr> | ||||||||
| <th>Plan</th> | ||||||||
| <th>Price</th> | ||||||||
| <th>Features</th> | ||||||||
| </tr> | ||||||||
| </thead> | ||||||||
| <tbody> | ||||||||
| <tr> | ||||||||
| <td>Basic</td> | ||||||||
| <td>$9.99/month</td> | ||||||||
| <td>Access to core features</td> | ||||||||
| </tr> | ||||||||
| <tr> | ||||||||
| <td>Pro</td> | ||||||||
| <td>$19.99/month</td> | ||||||||
| <td>Core features + priority support</td> | ||||||||
| </tr> | ||||||||
| <tr> | ||||||||
| <td>Premium</td> | ||||||||
| <td>$29.99/month</td> | ||||||||
| <td>All features + exclusive updates</td> | ||||||||
| </tr> | ||||||||
| </tbody> | ||||||||
| </table> | ||||||||
| </section> | ||||||||
|
|
||||||||
|
|
||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||
| <footer id="contact"> | ||||||||
| <p>© 2025 TechGadget Pro. Contact: info@techgadget.com</p> | ||||||||
| </footer> | ||||||||
|
|
||||||||
| </body> | ||||||||
|
|
||||||||
| </html> | ||||||||
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.
The page title includes placeholder text "Your Name". This should be updated to reflect your actual name for a more accurate and professional page title.