This week I have learned about all the HTML tags, elements, buttons, and forms. I also practiced developing static web pages. Following is the script and its output respectively.
<!DOCTYPE html>
<html>
<head>
<title> aneesh first </title>
<h1> STATIC WEBSITE </h1>
<a href ="https://www.w3schools.com/"> W3Schools </a>
<h1> HTML </h1>
<h2> CSS </h2>
<h5> Javascript </h5>
<h6> MongoDB </h6>
</head>
<body>
<p> Wokring on a project to develop a webapplication using Javascript in both front end and back end </p>
<img src="https://lh3.googleusercontent.com/qhKmAKk2D7HTK0qx2QOX5o1FmYGtmh62r9mYCgroSUn91Ckq_NDrzOD4VqxuY-7l4igQ=w300">
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML">Mozilla Foundation</a>
<a href="file:///C:/Users/Aneesh/Desktop/Coltsteel/first/Quiz1.html">Quiz1</a>
<table border="2">
<thead>
<td>First name</td>
<td>Last name </td>
</tr>
</thead>
<tbody>
<tr>
<td>aneesh</td>
<td>koratamaddi </td>
</tr>
<tr>
<td>JAVASCRIPT</td>
<td>WebApp</td>
</tr>
</tbody>
</table>
<li> aneesh </li>
<li> koratamaddi </li>
</ol>
<ul>
<li><b> fdsfs</b> </li>
<li>dfsdf</li>
<li>dsdasderwetrr</li>
</ul>
dasd
<h1>Sign In</h1>
<form action="https://www.w3schools.com/>
<label> login <input type="text" name="login" placeholder="Username" required> </label>
<label> password <input type="password" name="password" placeholder="password" required> </label>
<label> email <input type="email" name="email" placeholder="email" required> </label>
<label for="Javascript"> JavaScript: </label>
<input type="radio" name="choice">
<label for="Node"> NodeJS:</label>
<input type="radio" name="
<option value="Frontend"> </option>
<option value="Backend"></option>
</select>
<button>GO !</button>
</form>
</body></html>
Output:
<!DOCTYPE html>
<html>
<head>
<title> aneesh first </title>
<h1> STATIC WEBSITE </h1>
<a href ="https://www.w3schools.com/"> W3Schools </a>
<h1> HTML </h1>
<h2> CSS </h2>
<h5> Javascript </h5>
<h6> MongoDB </h6>
</head>
<body>
<p> Wokring on a project to develop a webapplication using Javascript in both front end and back end </p>
<img src="https://lh3.googleusercontent.com/qhKmAKk2D7HTK0qx2QOX5o1FmYGtmh62r9mYCgroSUn91Ckq_NDrzOD4VqxuY-7l4igQ=w300">
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML">Mozilla Foundation</a>
<a href="file:///C:/Users/Aneesh/Desktop/Coltsteel/first/Quiz1.html">Quiz1</a>
<table border="2">
<thead>
<td>First name</td>
<td>Last name </td>
</tr>
</thead>
<tbody>
<tr>
<td>aneesh</td>
<td>koratamaddi </td>
</tr>
<tr>
<td>JAVASCRIPT</td>
<td>WebApp</td>
</tr>
</tbody>
</table>
<li> aneesh </li>
<li> koratamaddi </li>
</ol>
<ul>
<li><b> fdsfs</b> </li>
<li>dfsdf</li>
<li>dsdasderwetrr</li>
</ul>
dasd
<h1>Sign In</h1>
<form action="https://www.w3schools.com/>
<label> login <input type="text" name="login" placeholder="Username" required> </label>
<label> password <input type="password" name="password" placeholder="password" required> </label>
<label> email <input type="email" name="email" placeholder="email" required> </label>
<label for="Javascript"> JavaScript: </label>
<input type="radio" name="choice">
<label for="Node"> NodeJS:</label>
<input type="radio" name="
<option value="Frontend"> </option>
<option value="Backend"></option>
</select>
<button>GO !</button>
</form>
</body></html>
Next week. I will learn more about CSS and develop an organized and attractive static web application.