answersLogoWhite

0

📱

HTML

Hypertext Markup Language, or HTML for short, is a programming language most commonly used to develop websites and offline applications, such as manuals. Though the initial intent of the language was to exchange information from a small network of computers, it is now most often used to share information and allow engagement in online activities throughout a network with an increasing number of host computers. Questions about the development of applications and pages through HTML belong in this category.

2,666 Questions

How can we use script tag in java?

to implement javascript embed the statements between <script> n </script>,,,

and include any scripting language.

eg:<script LANGUAGE="javascript">

block of codes

</script>

What is the program that interprets HTML and enables to view files published on the web?

A Web Browser. Examples of web browsers include: Internet Explorer, Firefox, Google Chrome, and Opera.

What is a paragraph tag?

A paragraph tag is used within HTML syntax to create a section of text that the webpage interprets as a singular chunk (similar to a paragraph). Within HTML code, use the tags <p> and </p> to denote data you want to display within the paragraph. For instance:

<p>Text I want to display.</p>

Compare the advantages and disadvantages of using a Web authoring application an HTML editor and a text editor for developing websites?

Compare the advantages and disadvantages of using a Web authoring application, an HTML editor and a text editor for developing Web sites. List an example of each tool.

Dreamweaver is an example of HTML editor; EditPad Pro is an example of a text editor.

Text Editor

HTML Editor

Advantages

Disadvantages

Advantages

Disadvantages

Page creation is increased with knowledge of HTML

Limited to knowledge of HTML

No knowledge of HTML required

Often has invalid code

Create valid code

Can take longer to format

Can see page displayed while creating

Usually created with tables, not CSS

Tools to insert graphics

Unnecessary HTML code, takes longer for display

How many heading sizes does HTML support?

It supports 6 heading sizes using the <h1> to <h6> tags. The <h1> is the largest heading.

Where to place your h1 tags?

The only place that the HTML title tag is valid, according to the W3C, is inside the section of the document. So the tag fits into an HTML document like so</p><p><DOCTYPE appropriate for the doc></p><p><html></p><p><head></p><p><title>I love the fishes!

Content

It doesn't matter if the title comes first or last, or mixed in with other head tags like script or meta, but it *has* to be in the head. In XHTML and HTML5 this tag is required for the document to be valid.

I usually place the tags above my tag, sometimes in the section if I use that.

Who is responsible for releasing each new version of HTML?

There is an official HTML standards organization, called the World Wide Web Consortium (or W3C), see related link.

HTML versions are released as specifications, papers that describe which tags are valid and how they should work, and those specifications are released by the W3C.
But the specifications are just paper, and it is up to the browser vendors to implement the standards - they may implement bits they like, ignore bits they don't like and add bits they think are missing.
In the real world, the HTML versions we use are not controlled by any single organization. Historically, the standards have sometimes played catch up by just writing down what the browsers are already doing, and sometimes proposed stuff that has been universally ignored.

So the responsible would be the W3C, the 3-4 major browser vendors and the interaction between them. It is hard to be much more specific than that.

Can you retrieve a JPEG file out of a HTML file?

A .jpeg file is not in an HTML file. It is a separate file that is called from the HTML file to display on the browser. You can get the URL of the jpeg file from the HTML file and if the graphic is still there, the file can be obtained from its location.

If you are on the actual web page that displays the image, you can usually right click on the image and select 'Save As' and save the file. Some web sites have their images protected to prevent you from saving their photos onto your harddrive.

Where does Tim berners lee work at?

In 1994 Tim joined the laboratory of computer science at Massachusetts institute of technology as director of W3 consortium, which coordinates web development world wide.With M. Fischetti, he wrote Weaving the Web (1999). He was knighted in 2004.

WHAT TYPE OF TAGS CAN YOU CREATE IN HBSS?

In HBSS (Host-Based Security System), you can create various types of tags, including asset tags, which help identify and categorize systems based on their function or security posture. You can also create compliance tags to track adherence to security policies or regulations. Additionally, custom tags can be generated for specific operational needs or to facilitate reporting and monitoring of particular threats or vulnerabilities. These tags enhance the management and visibility of assets within the security framework.

What are two-sided tags?

A two-sided tag is one that has an opening tag and a closing tag, such as <a> and </a>. This is in contrast to other tags, like <br> and <img>, which do not need closing tags.

What tools can someone use to validate HTML code?

Some tools people could use to validate HTML code are Dr. Watson, Validate HTM Firefox add on and WDG HTML validator. Also popular to validate HTML codes are Cahse HTML validator life and HTML Toolbox.

Why is HTML made?

HTML is made to make easy the web development. It is used so that amateurs can also learn it.

Which HTML tag creates the largest heading on a webpage?

<h1>...</h1>

Kinda.

The specification does not stipulate that this heading is to be any larger or smaller than any of the other headings. But the browsers default to making this on the largest of the 6.

How can you hyperlink an image?

You put the image in an img tag and insert it all into anchor tags, like this:

your_image>

What does HTML stands for and what does it mean?

HyperText Markup Language. Note that Hypertext is written as one word, although it contains two of the initials.

The acronym HTML stands for hyper text markup language. HTML can also stand for high temperature materials laboratory. Hyper text markup language is standard protocol for fixing and showing documents on the World Wide Web.

What is a href code?

href is a Attribute used for the Anchor tags to link a image or line of text to a specific website
here's a visual for linking a anchor to a image using and href attribute




I hope this helped you understand the href attribute

What button until the desired font size is displayed?

If you click the grow font button too many times and make the font size too big, you can click a keyboard combination until the desired font is displayed. On a PC, click the ctrl and the minus symbol at the same time. On a Mac, press the Apple key and the minus symbol at the same time.

How do you make a star on HTML?

First off, it depends on what you mean by a "star"? You could be asking for an asterisk, an actual star character, or an image of a star. Therefore, I will provide you with the answers for all three.

  1. Asterisk: All you need to do is add an asterisk (usually Shift + 8 or the * button on the number pad) to the HTML code.
  2. Star character: Unicode does have two star characters: a stroked star (☆) and a solid star (★). If you see a box in those parenthesis, then your system does not recognize it. To put it in your HTML, just copy it from here and directly paste it in your code, or if your page is encoded in unicode, then just type in ";" for the black star and ";" for the white star (remove the quotes).
  3. Image of a star: To insert an image of a star you need to know the URL of the image and use this format to display it: "Star". You can change the values of the attributes as needed.

Is HTML a meta language because users can create their own markup elements that extend the usefulness of XML?

No, users cannot create their own tags. The tags that are defined only must be used.

What attribute of the table tag controls the table alignment?

The attribute the controls the alignment of a table is the "align" attribute. It's possible values are left, right, and center.

This attribute sets the alignment of the table in relation to the rest of the document.

<table align="center">

....

</table>

This attribute was deprecated in the HTML 4.01. That means that you can use it in HTML 4, and expect it to work in the browsers, but there are better ways of achieving your goal. (CSS)

If you're using HTML 4.01 Strict as your doctype, then use of align is obsolete (meaning the browsers no longer have to support it and its use is prohibited.) The same goes for XHTML 1.0 Strict, and the current draft of HTML 5.

Instead, use CSS margins and floats.

What is the difference between base font and font tag?

Base font is an HTML tag that specifies the font you want to use throughout your document:

<basefont face="arial, verdana, courier" size="4" color="green">

In this example the browser of the user will select the first available font of the list to display the text.

The font tag is an older HTML tag but is no longer recommended although it still works. This is an example of its use:

<p>

<font size="3" face="verdana" color="blue">

This paragraph is in Verdana, size 3, and in blue text color.

</font>

</p>

This is the Wikipedia explanation for tag:

In the HTML syntax, most elements are written with a start tag and an end tag, with the content in between. Tags are composed of the name of the element, surrounded by angle brackets. An end tag also has a slash after the opening angle bracket, to distinguish it from the start tag. For example, a paragraph, which is represented by the p element, would be written as

Will HTML will be replaced by XHTML?

That is what seems to be happening already. XHTML is being used more than normal HTML for modern websites, since it forces better cross-browser compatibility -- meaning that multiple browsers viewing the same page should see the same thing. HTML may never fully take over XHTML; however, at this rate, XHTML will be the markup language most commonly used for webpages.