write this on the writing side
Create a website using HTML5 and CSS using any 4 CSS properties. Write a code for 2 separate pages having different file names such as first page as Index. html and second page as page2.html. Use any theme such as college profile or company profile etc. Every page must contain proper Meta information and design web page as follows.
1) The index page must contain a heading which is highest among other text on pages and must be at centre of the page. There must be a paragraph which introduces general information about the theme chosen must have at least 3 physical style tags and one image with alternate text. This page must be connected to other two pages with proper navigational links.
2) The 2nd page must contain the feedback or enrolment form related with theme chosen with features of HTML5. The form must contain text element and email address of the company or person. Include the submit button.
Index.html
<!DOCTYPE html>
<html>
<head>
<title>MY SELF</title>
</head>
<body style="background-color: purple;">
<center><h1>My Self</h1></center>
<div style="text-align: center;"><img src="vinitbro.jpeg" width="200" height="200" alt="myimage"></div>
<p style="color: white; font: 1em sans-serif;">Hey, I am <i><u>Vinit Pandey</u></i>, so I have to say something about myself. Sometimes it is hard to introduce yourself because you know
yourself so well that you do not know where to start with. Let me give a try to see what kind of image you have about me through
my self-description. I hope that my impression about myself and your impression about me are not so different. Here it goes.<br><br>
I like to create new things. when I was in 11th I really love the way that how technolgy works. So, in order to fully comprehend,
I needed to learn a few things, so I began with HTML, Java Script, and CSS, and I also learned about Cpanel, Hpanel, and how hosting works.
Then I created my first website (wickedvinittricks.com). I earned a handsome amount of money from that website. This success is great
inspiration for me. Then I learned about app development and created an app (11th Science Notes Maharashtra) Lockdown helped me gain
49,000 users in a year.<br><br>
after all that. I got admission in Computer Engineering, and in the first year, I created
<a href="https://smmwizardpro.com" style="color: yellow;">SMM WIZARD PRO</a> this website is a finest creation of mine, and its annual turnover is Rs.
7 lakh. I feel very great, because at that time I was just 17 years old. In the second year of college, I created
<a href="https://allaboutwebworld.com" style="color: yellow;">ALL ABOUT WEB WORLD</a> and <a href="https://blog.smmwizardpro.com" style="color: yellow;">Start Your Own Business</a> As a mini-project from college, I developed (Apni Dukaan)
a webstore for local vendors to sell their groceries online in their local area.<br><br>
Now that I am in my third year, I have created a YouTube channel <a href="https://www.youtube.com/channel/UCLbuLbpLDV5oy_mcC-B-ZMQ" style="color: yellow;">
Envision Gyan
</a> and am also working on an AI project about social dilemmas. The Social Dilemma tells us that many
social media companies like Instagram and Facebook succeed by capturing as much of our attention as they can, then selling that attention to the highest bidders. As the saying goes,
if you're not paying for the product, you are the product so we are creating a tool that helps to analyze anxiety,depression in a particular
Human beign. This will help the society and parents to look after their child.<br><br>
I completed Google Cloud Quest and Amazon AWS program. I am also learning about investments, bonds, stocks and digital currencies. I also get
a chance to teach students IT and CS here I can apply all my practical knowledge for the development of
society.<br><br>
<b><a href="https://instagram.com/vinit.bro">Click Here</a> to follow me on Instagram</b><br>
<a href="form.html" style="color: yellow;">Click Here</a> to fill this quick survey form.
<i></i></p>
<br>
</body>
</html>
Form.html
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div>
<h1>Survey Form</h1>
<table>
<tr>
<td>First Name</td>
<td><input type="text" name="t1"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="t2"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="email" name="e1"></td>
</tr>
<tr>
<td>Gender</td>
<td><input type="radio" name="r1">MALE</td>
<td><input type="radio" name="r1">FEMALE</td>
</tr>
<tr>
<td>How much you liked my bio</td>
<td><select name="qua">
<option>Can be better</option>
<option>Good</option>
<option>Best</option>
</select></td>
</tr>
<tr>
<td><input type="submit" name="submit" value="submit"></td>
</tr>
</table>
</form>
</div>
</body>
</html>