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

Add bootstarp project3 #216

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
87 changes: 87 additions & 0 deletions Project_1/nss_proj1.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>THE WEB DEVELOPMENT SAGA!!</title>
</head>
<body>
<header><h1>Welcome to First HTML Project "Barebones Portfolio ;)" </h1></header>
<form action="">
<h3>---------CONTACT FORM----------</h3>
<p><b>Required fields are followed by *</b></p>
<p>FIRST NAME: * <input type="text" name="name" required></p>
<p>LAST NAME: * <input type="text" name="name" required></p>
<fieldset><legend>Gender: *</legend>
<p>
Male <input type="radio" name="gender" required>
Female<input type="radio" name="gender" required>
Other<input type="radio" name="gender" required></Male>
</p>
</fieldset>
<p>Age * <input type="number" name="number" id="number" min=1 max=100 required></p>
<p>Phone number * <input type="number" name="number" id="number" min=10 max=13 required></p>
<p>
Email: *<input type="email" name="email" id="email" required>
</p>
<p><input type="submit" value="Submit here,Thank you :)"></p>
</form>
<br>
<h2>----------TABLE----------</h2>
<table>
<thead>
<tr>
<th>Subject</th>
<th>Theory</th>
<th>Practical</th>
<th>Total</th>
<th>Grades</th>
</tr>
</thead>
<tbody>
<tr>
<td>English</td>
<td>80</td>
<td>95</td>
<td>90</td>
<td>A+</td>
</tr>
<tr>
<td>Maths</td>
<td>90</td>
<td>100</td>
<td>95</td>
<td>O</td>
</tr>
<tr>
<td>C++</td>
<td>82</td>
<td>75</td>
<td>80</td>
<td>B</td>
</tr>
</tbody>
<tfoot>
<th colspan="5">RESULT: PASS</th>
</tfoot>

</table>

<h4>----------IMAGES AND VIDEOS----------</h4>
<div>
<img src="https://www.psdstack.com/wp-content/uploads/2019/08/copyright-free-images-750x420.jpg" alt="oops">
<iframe width="560" height="315" src="https://www.youtube.com/embed/SWb_0IXjm-M" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

</body>
<br>
<footer>
<h4>----------FOOTER----------</h4>
<a href="#">FAQ</a>
<a href="#">Contact</a>
<a href="#">Terms of use</a>
<a href="#">Privacy policy</a>
<a href="#">&copy;2021 myproj1</a>

</footer>
</html>
138 changes: 138 additions & 0 deletions Project_2/nss_proj2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>THE WEB DEVELOPMENT SAGA!!</title>
<style>
header h1 {
text-align: center;
font-size: 40px;
color: black;
}
h2,h3,h4{
background-color: ivory;
}

header {
padding: 70px;
background-image: url("https://i.toneden.io/unsafe/full-fit-in/412x732/filters:no_upscale()/https%3A%2F%2Far.toneden.io%2F39085372%2Funlocks%2Ftemp585156%3Fcache%3D1596895597675");
}

body{
text-align: center;
background: radial-gradient(#01b4eb, #fa7be9) ;
margin: 0px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
table{
margin-left: auto;
margin-right: auto;
text-align: center;
border: 1px solid black;
padding: 10px;

}
img {
border: 1px solid #ddd;
border-radius: 50px;
padding: 5px;
width: 550px;
}
div{
background-image: url("https://images.pexels.com/photos/957061/milky-way-starry-sky-night-sky-star-957061.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
}
footer {
background-color: #333;
overflow: hidden;
}

footer a {
text-decoration: none;
padding: 20px;
text-align: center;
float: left;
color: white;
}
</style>
</head>
<body>
<header><h1>Welcome to First HTML Project "Barebones Portfolio ;)" </h1></header>
<form action="">
<h3>---------CONTACT FORM----------</h3>
<p><b>Required fields are followed by *</b></p>
<p>FIRST NAME: * <input type="text" name="name" required></p>
<p>LAST NAME: * <input type="text" name="name" required></p>
<fieldset><legend>Gender: *</legend>
<p>
Male <input type="radio" name="gender" required>
Female<input type="radio" name="gender" required>
Other<input type="radio" name="gender" required></Male>
</p>
</fieldset>
<p>Age * <input type="number" name="number" id="number" min=1 max=100 required></p>
<p>Phone number * <input type="number" name="number" id="number" min=10 max=13 required></p>
<p>
Email: *<input type="email" name="email" id="email" required>
</p>
<p><input type="submit" value="Submit here,Thank you :)"></p>
</form>
<br>
<h2>----------TABLE----------</h2>
<table>
<thead>
<tr>
<th>Subject</th>
<th>Theory</th>
<th>Practical</th>
<th>Total</th>
<th>Grades</th>
</tr>
</thead>
<tbody>
<tr>
<td>English</td>
<td>80</td>
<td>95</td>
<td>90</td>
<td>A+</td>
</tr>
<tr>
<td>Maths</td>
<td>90</td>
<td>100</td>
<td>95</td>
<td>O</td>
</tr>
<tr>
<td>C++</td>
<td>82</td>
<td>75</td>
<td>80</td>
<td>B</td>
</tr>
</tbody>
<tfoot>
<th colspan="5">RESULT: PASS</th>
</tfoot>

</table>

<h4>----------IMAGES AND VIDEOS----------</h4>
<div>
<img src="https://www.psdstack.com/wp-content/uploads/2019/08/copyright-free-images-750x420.jpg" alt="oops">
<iframe width="560" height="315" src="https://www.youtube.com/embed/SWb_0IXjm-M" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

</body>
<br>
<footer>
<h4>----------FOOTER----------</h4>
<a href="#">FAQ</a>
<a href="#">Contact</a>
<a href="#">Terms of use</a>
<a href="#">Privacy policy</a>
<a href="#">&copy;2021 myproj1</a>

</footer>
</html>
Loading