1) Font style tabs in HTML are also known as
- navigation Or menu or scrollspy.
2) Syntax of writing a different font style in HTML
font: normal 12px aerial;
font-family : aerial, sans serif;
font-size: 15px;
get font family from google font https://fonts.google.com/
apply above style for body tag to whole page affect.
3) Which HTML tag is used to give strikethrough effect to text?
for html 4 use <strike>
for html 5 use below example <del> tag
<!DOCTYPE html>
<html>
<body>
<h1>The del element</h1>
<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>
</body>
</html>
4) What is best site to get HTML templates?
template means design which are ready to use.
themeforest, templatemonster, colorlib
should check whether is responsive or not, it is good thing for SEO
5) How to send email of HTML output?
use PHP mail function
mail($from, $to, $sub, $message);
6) Explain the various attributes necessary to insert drop down list in a HTML page
already post on this same blog
https://learn-infyleaf.blogspot.com/2020/12/how-to-create-navigation-menu-using.html
7) How to add a app icon in my app with HTML?
visit link -
https://learn-infyleaf.blogspot.com/2020/12/how-to-create-icons-like-social-media.html
8) How to apply HTML code on our blogs website?
go to theme option - customize - drop down - edit html , change and ensure click on update button
9) Write a HTML program to design a simple website using image and hyperlink
<body>
<img src="abc.jpg" onclick="location.href='mylocation.html'" />
OR
<p><a href="mylocation.htm"><img src="abc.jpg" /></a></p>
</body>
10) Various design requirements in HTML and approaches to design Web pages
- editor like notepad++, dreamviewver, visual studio. all browser, laptop and mobile to test responsive and works all browser.
11) How to HTML page working on the browser in internal working both English and Hindi?
three method
1) use google translator , which translate original website to various language not only English or Hindi.
2) using site https://mothereff.in/html-entities add your Hindi content and use converted entities in html.
3) use web font like google font
12) The code for inserting an image in an HTML page is imagsrc alt The alt attribute .
<img src="abc.png" alt="sample image" />
13) I design one HTML page but my laptop don't support the center alignment ?
use align="center"
or add margin : 0px auto ; - style center div position.
14) How to create quiz in HTML with timer?
- use javascript setinterval to start clock, and in clock function set -1 to reverse original time.
- add option using checkbox, link with mysql, just match correct value of checkbox to database value
- count correct answer & wrong answer in php loop & that's set quiz is ready.
15) Open source tools that can be used in project of computer science and engineering can be related to Web development
github have lot of tools or contact us we will to make project.