Untitled Document
Untitled Document
DOCTYPE html>
<html>
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
<title>Hello, World!</title>
</head>
<body>
<table border="black">
<h5>Sample HTML Table </h5>
<thead >
<th>Name</th>
<th>Id</th>
<th>Age</th>
</thead>
<tbody>
<tr>
<td>Shivam</td>
<td>420</td>
<td>22</td>
</tr>
<tr>
<td>Vikash</td>
<td>420420</td>
<td>22</td>
</tr>
<tr>
<td>Abcjdde</td>
<td>42042</td>
<td>122</td>
</tr>
<tr>
<td>jwfjwend</td>
<td>42041120</td>
<td>1122</td>
</tr>
</tbody>
</table>
</body>
</html>
let a=10;
let b=3;
let addition=a+b;
console.log("Addition: ", addition);
let subtraction=a-b;
console.log("Subtraction: ", subtraction);
let multiplication=a*b;
console.log("multiplication: ",
multiplication);
let division=a/b;
console.log("division: ", division);
let modulus=a%b;
console.log("modulus: ", modulus);
<!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>
<h1>Unordered list</h1>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<h1>Ordered list</h1>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is a paragraph.</p>
<a href="https://www.google.com/">Visit
Google</a>
<img src="google.png" alt="An image" />
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
{
.main
font-size:30px;
font-weight:bold;
text-align:center;
}
</style>
<h1 class=".main">Choose Any One</h1>
</head>
</head>
<select>
<option value="Apple">Apple</option>
<option value="Banana">Banana</option>
<option value="Grapes">Grapes</option>
<option value="Grapes">Mango</option>
<option value="Milk">Milk</option>
</select>
</html>
<body>
<body>
<heder>
<h1>Kashi Institute of Technology, Varanasi</h1>
<a href="#">Help</a>
</nav>
<div class="container">
<h1>List of Departments</h1>
<div class="departments">
<div class="department">
<h1 style="color: red">Computer Science</h1>
<p>Courses offered are CSE, CSE (AI/ML), CSE (Data Science)</p>
</div>
<div class="department">
<h1>Mechanical Engineering</h1>
<p>Courses offered thermodynamics, Robotics</p>
</div>
</div>
</div>
<h1>B.TECH ALL COURSE</h1>
<select>
<option value="CSE ">CSE</option>
<option value="AIML">AIML</option>
<option value="ME">ME</option>
<option value="MCA">MCA</option>
<option value="BBA">BBA</option>
</select>
<list>
<ol type="A">
<p>ALL STUDENTS NAME</p>
<li>iron Man</li>
<li>Randy orton</li>
<li>Batman</li>
<li>Spiderman</li>
<li>Deep Thorat</li>
</ol>
</list>
</body>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<form>
<form>
<h1>Enter your name:</h1>
<label for="fname">First name:</label><br />
<input type="text" id="fname" name="fname" /><br />
<label for="lname">Last name:</label><br />
<input type="text" id="lname" name="lname" />
</form>
<p>Choose your favorite Web language:</p>
<input type="radio" id="html" name="fav_language"
value="HTML" />
<label for="html">HTML</label><br />
<input type="radio" id="css" name="fav_language"
value="CSS" />
<label for="css">CSS</label><br />
<input
type="radio"
id="javascript"
name="fav_language"
value="JavaScript"
/>
<label for="javascript">JavaScript</label>
</form>
</body>
</html>