Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
25e10e2
Create Q1.html
srideepgit Dec 22, 2024
0f2e4e1
Delete LICENSE
srideepgit Dec 22, 2024
057997b
Update Q1.html
srideepgit Dec 22, 2024
790d260
Create Q2.html
srideepgit Dec 22, 2024
335ab69
Create Q3.html
srideepgit Dec 22, 2024
2511b32
Create Q4.html
srideepgit Dec 22, 2024
0c0effa
Create Q5.html
srideepgit Dec 22, 2024
8574116
Create OUTPUT.md
srideepgit Dec 22, 2024
8b147b4
Update OUTPUT.md
srideepgit Dec 22, 2024
e5b74a1
Create Q1,Q2,Q3,Q4.txt
srideepgit Dec 24, 2024
7d3a40f
Update and rename Q1,Q2,Q3,Q4.txt to Q1,Q2,Q3,Q4.md
srideepgit Dec 24, 2024
3528a04
Add files via upload
srideepgit Dec 24, 2024
44ed368
Delete MODERN HTML/Q1,Q2,Q3,Q4.md
srideepgit Dec 24, 2024
1583ea6
Create Q5.html
srideepgit Dec 24, 2024
8576db1
Create Q6.html
srideepgit Dec 24, 2024
2504fb2
Create OUTPUT.md
srideepgit Dec 24, 2024
6a7ac5d
Create Q2.html
srideepgit Dec 24, 2024
6dfdbeb
Create Q4.html
srideepgit Dec 24, 2024
88242d8
Update Q4.html
srideepgit Dec 24, 2024
eeee5ff
Update Q4.html
srideepgit Dec 24, 2024
eb32377
Add files via upload
srideepgit Dec 24, 2024
21826c3
Create Q1.css
srideepgit Dec 25, 2024
8a49c2f
Create Q1.html
srideepgit Dec 25, 2024
473ec80
Create Q2.html
srideepgit Dec 25, 2024
a96236a
Update Q1.html
srideepgit Dec 25, 2024
215183c
Update Q1.css
srideepgit Dec 25, 2024
2fb31b5
Create Q3.css
srideepgit Dec 25, 2024
a5e0c18
Create Q3.html
srideepgit Dec 25, 2024
ae206ad
Update Q1.html
srideepgit Dec 25, 2024
bf9cfed
Create OUTPUT.md
srideepgit Dec 25, 2024
2316411
Create OUTPUT.md
srideepgit Dec 25, 2024
5455810
Update OUTPUT.md
srideepgit Dec 25, 2024
75c93e4
Update README.md
srideepgit Dec 25, 2024
e6d7f97
Update Q3.css
srideepgit Dec 26, 2024
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
44 changes: 44 additions & 0 deletions FORMS & MEDIA/OUTPUT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
## ➡️ Questions with Answer📝
#### ➡️ Output Images Attached with each questions.

</br>

1. Create an image gallery that holds multiple images.

![Screenshot 2024-12-22 225237](https://github.com/user-attachments/assets/8c2ef5a3-5f3a-4384-b295-0a7678e0892e)


</br>

2. Use video and audio tags to display video and audio with the playback, audio controls.

![Screenshot 2024-12-22 230253](https://github.com/user-attachments/assets/4b91dc57-b55b-4ff8-aea7-15068d67f8e8)


</br>

3. Modify the previous assignment so that the audio and video play automatically as the page is loaded and
they should play infinitely.

![Screenshot 2024-12-22 230621](https://github.com/user-attachments/assets/536b115b-d331-44e7-a54b-8739c355419b)


</br>

4. Use iframe to embed the PhysicsWallah Wikipedia page properly.

![Screenshot 2024-12-22 231424](https://github.com/user-attachments/assets/5100184a-a6a7-44b4-b3ea-f5370d753ca9)


</br>

5. Create a sign-up and sign-in form with proper validation.
a) Sign-up form should have a first name, last name, email, password, confirm password, age, gender,
and agree to terms and conditions fields at minimum (You can add any other if you like)
b) Sign-in form should have email and password fields.

![Screenshot 2024-12-22 232029](https://github.com/user-attachments/assets/fdb6aff2-55ad-44fc-b0f6-9e86a0041aa1)


</br>

18 changes: 18 additions & 0 deletions FORMS & MEDIA/Q1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Home</title>
</head>
<body>

<img src="https://www.alleycat.org/wp-content/uploads/2019/03/FELV-cat.jpg" alt="dummy image" width="400" height="400">
<img src="https://www.alleycat.org/wp-content/uploads/2019/03/FELV-cat.jpg" alt="dummy image" width="500" height="500">
<img src="https://www.alleycat.org/wp-content/uploads/2019/03/FELV-cat.jpg" alt="dummy image" width="400" height="500">
<img src="https://www.alleycat.org/wp-content/uploads/2019/03/FELV-cat.jpg" alt="dummy image" width="600" height="500">
<img src="https://www.alleycat.org/wp-content/uploads/2019/03/FELV-cat.jpg" alt="dummy image" width="400" height="400">
<img src="https://www.alleycat.org/wp-content/uploads/2019/03/FELV-cat.jpg" alt="dummy image" width="600" height="400">
<img src="https://www.alleycat.org/wp-content/uploads/2019/03/FELV-cat.jpg" alt="dummy image" width="900" height="700">
</body>
</html>
14 changes: 14 additions & 0 deletions FORMS & MEDIA/Q2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Home</title>
</head>
<body>

<video src="Apache NetBeans IDE 21 2024-05-20 11-06-01.mp4" controls></video>
<audio src="https://www.learningcontainer.com/wp-content/uploads/2020/02/Kalimba.mp3"controls>Kalimba Audio</audio>
</body>
</html>

13 changes: 13 additions & 0 deletions FORMS & MEDIA/Q3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Home</title>
</head>
<body>

<video src="Apache NetBeans IDE 21 2024-05-20 11-06-01.mp4" controls autoplay loop></video>
<audio src="https://www.learningcontainer.com/wp-content/uploads/2020/02/Kalimba.mp3"controls autoplay loop>Kalimba Audio</audio>
</body>
</html>
15 changes: 15 additions & 0 deletions FORMS & MEDIA/Q4.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Home</title>
</head>
<body>

<iframe src="https://en.wikipedia.org/wiki/Physics_Wallah" style="border:0px #ffffff none;"name="myiFrame"
scrolling="yes" frameborder="1" marginheight="0px" marginwidth="0px" height="400px"
width="600px"allowfullscreen></iframe>
</body>
</html>

55 changes: 55 additions & 0 deletions FORMS & MEDIA/Q5.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Home</title>
</head>
<body>

<form>
<label for="firstName">First Name:
<input type="text" name="firstName" placeholder="Srideep" id="firstName" required
minlength=3 max=20 />
</label>
<br>
<label for="lastName">Last Name:
<input type="text" name="lastName" placeholder="Sarkar" id="lastName" required min=3
max=20 />
</label>
<br>
<label for="email">Email:
<input type="email" name="email" placeholder="[email protected]" id="email" required />
</label>
<br>
<label for="password">Password:
<input type="password" name="password" placeholder="********" id="password" required
min=8 />
</label>
<br>
<label for="confirmPassword">Confirm Password:
<input type="password" name="confirmPassword" placeholder="********"
id="confirmPassword" required />
</label>
<br>
<label for="age">Age:
<input type="number" name="age" placeholder="38" id="age" required min=0 max=150 />
</label>
<br>
<label for="">Gender:
<input type="radio" id="male" value="male" name="gender" checked />
<label for="male">Male</label>
<input type="radio" id="female" value="female" name="gender" />
<label for="female">Female</label>
<input type="radio" id="other" value="other" name="gender" />
<label for="other">Other</label>
</label>
<br>
<label for="terms">terms:
<input type="checkbox" id="terms" required /> I agree to terms and conditions
</label>
<br>
<button type="submit">Register</button>
</form>
</body>
</html>
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

21 changes: 21 additions & 0 deletions MODERN HTML/OUTPUT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## ➡️ Questions with Answer📝
#### ➡️ Output Images Attached with each questions.

</br>

Q5. Create a web page that highlights the features of HTML5. Use appropriate semantic tags to structure the
content and showcase at least three key features of HTML5 with explanations>

![Screenshot 2024-12-24 212806](https://github.com/user-attachments/assets/ddad2ced-b707-48aa-aa29-9df8e818edc0)


</br>

Q6. Create a simple web page which has a table. The table must have 2 columns HTML and HTML5. The table
should include a minimum of three rows describing the differences between HTML and HTML5.

![Screenshot 2024-12-24 213113](https://github.com/user-attachments/assets/5a0fad4e-13e5-4cd8-ae77-29fce0aedc57)


</br>

Binary file added MODERN HTML/Q1,Q2,Q3,Q4.pdf
Binary file not shown.
52 changes: 52 additions & 0 deletions MODERN HTML/Q5.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!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>HTML5 Feature Showcase</h1>
</header>

<p>Welcome to our beginner-friendly webpage showcasing HTML5 feature.</p>

<section>
<h2>Feature 1: Video Playback</h2>
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>

<section>
<h2>Feature 3: Semantic Tags</h2>
<p>HTML5 offers build-in form validation ,reducing the need for custom JavaScript code.</p>

<form >
<label for ="email">Email:</label>
<input type="email" id="email" name="email" required>
<br/>
<input type="submit" value="Submit">
</form>
</section>

<>
<h2>Feature 3: Semantic Tags</h2>
<p>HTML5 introduced semantic tags like <code>&lt;header&gt;</code>, <code>&lt;nav&gt;</code>, <code>&lt;main&gt;</code>, and more , which improve page structure and accessibility.</p>

<article>
<h3>Article Title</h3>
<p>This is a sample article content. Semantic tags make it easier to structure your content and improve search enf=gine optimization.</p>

</article>

<footer>
<p>Created by Your Name &copy; 2024</p>
</footer>



</body>
</html>
90 changes: 90 additions & 0 deletions MODERN HTML/Q6.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>HTML v/s HTML5</title>

</head>

<body>

<h1>HTML v/s HTML5</h1>

<table border="1">

<thead>

<tr>

<th>HTML</th>

<th>HTML5</th>

</tr>

</thead>

<tbody>

<tr>

<td>

KILL

It required plugins like Adobe Flash to support audio and video

content.

</td>

<td>

Provides built-in support for multimedia elements such as video and audio without the need for a plugin.

</td>

</tr>

<tr>

<td>It has fewer elements as compared to HTML5.</td>

<td>

It includes new elements and form attributes such as time, date, and colour. Required and autofocus in input types of the tag element as well. </td>
<tr>

SKILLS

<td> Less semantic elements, thereby providing less web accessibility features.

</td>

<td>

<p>

It supports more semantic elements, such as &lt; header&gt;, &lt;footer&gt;, &lt;nav&gt;, and &lt;article&gt;, thereby improving accessibility.

</p>

</td>

</tr>

</tbody>

</table>

</body>

</html>
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# Web-Development-course
# Web Development 2.O

<div align="center">
<img src="https://github.com/user-attachments/assets/82b83c79-e1ca-45cd-9b85-270c241bc7a0" height="100px" width="100px"/>
<br/>
<br/>
<img src="https://img.shields.io/badge/HTML-%23E34F26?style=for-the-badge&logo=html5&logoColor=white"/>
<img src="https://img.shields.io/badge/CSS-%231572B6?style=for-the-badge&logo=css3&logoColor=white"/>
<img src="https://img.shields.io/badge/JavaScript-%23F7DF1E?style=for-the-badge&logo=javascript&logoColor=black"/>
<br/>
<img src="https://img.shields.io/badge/Tailwind_CSS-grey?style=for-the-badge&logo=tailwind-css"/>
</div>

## Overview 🌟
- This is the Repository for Full Stack Web Development 2.0 Assignments and Projects.

## License 🪪
This project is licensed under the [MIT License](LICENSE).
25 changes: 25 additions & 0 deletions SEO(Search Engine Optimization)/OUTPUT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## ➡️ Questions with Answer📝
#### ➡️ Output Images Attached with each questions.

</br>

Q1. Create an HTML document with appropriate <title> and &lt;meta> tags for SEO optimization. Ensure the title
is descriptive and the meta description is concise.

![Screenshot 2024-12-25 042254](https://github.com/user-attachments/assets/2d2f8f61-c17e-48df-9f26-5d772fc3f1f7)


</br>

Q2. Create an HTML document that properly incorporates semantic elements like &lt;header>, &lt;article>,
&lt;section>, or &lt;nav> to improve SEO and document structure.

![Screenshot 2024-12-25 042359](https://github.com/user-attachments/assets/7ada43e8-0111-48e1-9d6b-a40f6d632c9a)


</br>





Binary file added SEO(Search Engine Optimization)/Q1,Q3,Q5.pdf
Binary file not shown.
Loading