hello everyone.....
How are you all?
question-What are HTML codes?Can someone tell the html code to send an email to the author of book...
Who will tell me the correct answer, i will mark him or her as brainlist...
follow me ✌️✌️
Answers
Answer:
HTML is short for HyperText Markup Language and is the language of the World Wide Web. It is the standard text formatting language used for creating and displaying pages on the Web. HTML documents are made up of two things: the content and the tags that format it for proper display on pages.
What are the best beginner HTML books?
Your newborn may be vulnerable to these 6 serious diseases.
For me
Until now,
my websites looked great but have been coded with what seems like bubble-gum methods,
just for appearances and not for professionalism or compliance. This book taught me all that is possible with HTML and CSS coding....
Now,
Book link…
Murach's HTML5 and CSS3, 4th Edition: Anne Boehm, Zak
search it on Google ....
mark me as the brainliest plzz ✌️✌️✌️✌️
happy yeonjun day ❤️❤️❤️❤️
HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet. It is relatively easy to learn, with the basics being accessible to most people in one sitting; and quite powerful in what it allows you to create.
<!DOCTYPE html>
<html>
<body>
<h2>Send e-mail to [email protected]:</h2>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Comment:<br>
<input type="text" name="comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>
hope it helps.