Is the head tag used to give a heading to the webpage?
No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags,
How are Cascading Style Sheets helpful to a web designer?
You can choose to implement or ignore any technologies you wish. However, CSS is well-worth understanding and using. Standard HTML has very limited display and design options, and no satisfying mechanism for creating advanced layouts. Clever developers forced the table mechanism to be a crude formatting tool, but that was a hack.
CSS provides a much more powerful and flexible tool for laying out your site and specifying its visual design. With CSS, you can modify the appearance of all instances of a particular element at once. (For example, you can easily specify that all paragraph tags will be purple on a yellow background. I don't know why you'd do that.) You can also designate specific parts of your page and style them quite precisely. CSS has a number of page-layout mechanisms that allow you to create a page layout much more reliably than the old frame or table-based techniques.
If you're using XHTML strict, the tags that used to be used for layout and design (<font>, <center>, <b>, <i> and so on) are no longer supported. You're expected to use the CSS variations instead.
How do you make a footer in HTML?
The tfooter and theader elements are used to define the elements inside of a table that make up that tables header and footer respectively. They are particularly useful in complex tables, where the header and footer might otherwise not be obvious.
What is font size and image size?
Font size is how large text is.
Image size is how large an image, or picture, is.
A link.
How do you align header for HTML?
ALIGN="LEFT"
ALIGN="CENTER"
ALIGN="RIGHT"
Example:
<HEADER ALIGN="CENTER">This is the header</HEADER>
Extra:
This can also be used in combination with <H#>Header Size?</H#>
#= 1 24 pt font
#= 2 18 pt font
#= 3 14 pt font
#= 4 12 pt font
#= 5 10 pt font
#= 6 8 pt font
Example:
<H4 ALIGN="CENTER">Header in 12 point font</H4>
How do you create Google homepage using HTML coding?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0033)http://www.google.com/webhp?hl=en -->
<HTML><HEAD><TITLE>Google</TITLE>
<META http-equiv=content-type content="text/html; charset=UTF-8">
<STYLE>BODY {
FONT-FAMILY: arial,sans-serif
}
TD {
FONT-FAMILY: arial,sans-serif
}
A {
FONT-FAMILY: arial,sans-serif
}
P {
FONT-FAMILY: arial,sans-serif
}
.h {
FONT-FAMILY: arial,sans-serif
}
.h {
FONT-SIZE: 20px
}
.q {
COLOR: #0000cc
}
</STYLE>
<SCRIPT>
<!--
function sf(){document.f.q.focus();}
function c(p,l,e){var f=document.f;if (f.action && document.getElementById) {var hf=document.getElementById("hf");if (hf) {var t = "<input type=hidden name=tab value="+l+">";hf.innerHTML=t;}f.action = 'http://'+p;e.cancelBubble=true;f.submit();return false;}return true;}
// -->
</SCRIPT>
<META content="MSHTML 6.00.2719.2200" name=GENERATOR></HEAD>
<BODY text=#000000 vLink=#551a8b aLink=#ff0000 link=#0000cc bgColor=#ffffff
onload=sf()>
<CENTER>
<TABLE cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD><IMG height=110 alt=Google src="Google_soubory/logo.gif"
width=276></TD></TR></TBODY></TABLE><BR>
<FORM name=f action=/search>
<TABLE cellSpacing=0 cellPadding=4 border=0>
<TBODY>
<TR>
<TD class=q noWrap><FONT size=-1><B><FONT
color=#000000>Web</FONT></B> <A class=q id=1a
onclick="return c('www.google.com/imghp','wi',event);"
href="http://www.google.com/imghp?hl=en&tab=wi&ie=UTF-8&oe=UTF-8">Images</A> <A
class=q id=2a onclick="return c('www.google.com/grphp','wg',event);"
href="http://www.google.com/grphp?hl=en&tab=wg&ie=UTF-8&oe=UTF-8">Groups</A> <A
class=q id=4a onclick="return c('www.google.com/nwshp','wn',event);"
href="http://www.google.com/nwshp?hl=en&tab=wn&ie=UTF-8&oe=UTF-8">News</A> <B><A
class=q
href="http://www.google.com/options/index.html">more »</A></B></FONT></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=0>
<TBODY>
<TR>
<TD width=75> </TD>
<TD align=middle><INPUT type=hidden value=en name=hl><SPAN
id=hf></SPAN><INPUT type=hidden value=UTF-8 name=ie><INPUT type=hidden
value=UTF-8 name=oe><INPUT maxLength=256 size=55 name=q><BR><INPUT type=submit value="Google Search" name=btnG><INPUT type=submit value="I'm Feeling Lucky" name=btnI></TD>
<TD vAlign=top noWrap><FONT size=-2> <A
href="http://www.google.com/advanced_search?hl=en">Advanced Search</A><BR> <A
href="http://www.google.com/preferences?hl=en">Preferences</A><BR> <A
href="http://www.google.com/language_tools?hl=en">Language
Tools</A></FONT></TD></TR></TBODY></TABLE></FORM><BR><BR><FONT size=-1><A
href="http://www.google.com/ads/">Advertise with us</A> - <A
href="http://www.google.com/services/">Business solutions</A> - <A
href="http://www.google.com/about.html">About Google</A><SPAN id=hp
style="BEHAVIOR: url(#default#homepage)"></SPAN>
<SCRIPT>
//<!--
if (!hp.isHomePage('http://www.google.com/')) {document.write("<p><a href="/mgyhp.html" onClick="style.behavior='url(#default#homepage)';setHomePage('http://www.google.com/');">Make Google your homepage</a>");}
//-->
</SCRIPT>
</FONT>
<P><FONT size=-2>©2004 Google - Searching 4,285,199,774 web
pages</FONT></P></CENTER></BODY></HTML>
Is there anything HTML can't do?
There is a huge amount it cannot do. It is only really for fomatting the look of your webpage. To get your page to do things, like process data, you need some programming. As HTML is not a programming language, it cannot do anything like that. HTML can put a button on your webpage but it can't make anything happen when you click it. So to make really good web pages that do things, you need a programming language to work with HTML.
Is HTML a computer programming language?
To "mark up" means to determine the look and structure of a text (font type, size, color).
The transition to a "programming language" is theoretically fluent - but generally a markup language is to determine how things look, and a programming language is to determine how things react to user actions.
When websites are "interactive" - for example, if they contain games, or movable sub-windows or small text-editors - this is realized not with HTML, but with Javascript or Flash or Java, which are separate formats that can be integrated in HTML. They themselves are programming languages, HTML is not.
What is the default HTML font?
It depends on the operating system, the browser, and the version of the browser. There is no standardized default, and it's changed overtime. Most modern browsers use a sans-serif, but they used to prefer a serif font. Because of the proliferation of browsers and OSes, there's no reliable answer beyond this.
What does RFID active tags do?
RFID tags can be used to track down almost any item, from automobiles to cell phones. It is basically a tracking device to be used to find out its location.
How do you create cascading style sheets in HTML?
Cascading Style Sheet, or CSS, is a web standard to describe the presentation semantics of a document written in a markup language. In web design CSS is used to separate the document presentation from the document content. CSS specifies a priority scheme in how rules are to be used, thus the cascading effect that is referred to in the name Cascading Style Sheet.
What are the advantages of text editors?
Text editors allow data entry and updating. Some additional capabilities are:
- duplicating or deleting lines or blocks of lines
- changing specific text or using a regular expression to change a range of text
- moving sections of text
- finding text
- screen movement (up, down, left or right) by line, page or top/bottom
- command retrieval and repetition
- a macro facility
- retrieval of other files into the current one
- sorting
- regular expression capability
- undoing changes
- allowing more than one file to be edited at the same time
- writing to, appending to, or clearing the clipboard
- filling or overlaying areas with numbers or text
- splitting and joining lines either manually or at/after some text
- allowing split screens on the same or different files
- allowing invocation of external code/applications
- setting and going to bookmarks (in larger files)
- centering or justifying text
- excluding lines not of interest
- formatting or justifying paragraphs in various ways
- showing changed lines
- randomizing lines or paragraphs
- highlighting keywords or entire lines
- aligning strings within lines
- showing duplicate or unique data
- counting words or strings
Many text editors have these functions built in, other can be extended via
the macro facility. Emacs, SlickEdit, UltraEdit and VIM are extremely powerful
but require time and effort to master.
What is the primary function of an HTML?
Well HTML, or Hyper-Text Mark-Up Language, code is a code language. Every program (e.g. Microsoft Front Page) makes this HTML code. Each program including Internet Explorer and Mozilla Firefox use this program to display information it is programmed to display.
Write a program for scrolling a text in status bar using JScript?
Wrote this a few years ago, just paste it in the head or import it from a js file.
pretty self explanatory
<script language="JavaScript">
//Author: fjhdehoog
//Scriptname: Slide in status
var MyStatus='This is an example of how to use javascript to make a scrolling status text';
var start_status=1000; //start in 1 sec
var TBD=100; //Time Btween Digits 1000 = 1 Sec
var LoopIt=1; // 0= dont loop -- 1= loop
var DFSF=10000; //Display full status for 10 Sec /*------------------------------------------*/
setTimeout('ScrollStatus()',start_status); //comment this line out if u want to use body onload or window.onload
CurNum=MyStatus.length;
function ScrollStatus(){
window.status=MyStatus.substring(CurNum);
if (CurNum!=0) {
CurNum--;
setTimeout('ScrollStatus()',TBD); }
else
{
if (LoopIt) {CurNum=MyStatus.length;
setTimeout('ScrollStatus()',DFSF);} else { /*do Nothing*/ } } }
</script>
How do you do a pentagram in HTML?
HTML(earlier versions) itself does not provide any means to display anything other than text and color. This means if you want a HTML document to display a pentagram, you will have to make a pentagram image file first, and include that into your HTML document using the <img> tag.
However if your browser supports HTML5 and you know how to use canvas in HTML5, then you can create one yourself.
Where do images come into focus?
For people who are farsighted, images come into focus behind the retina; for people who are nearsighted, images come into focus in front of the retina.
How do you add scrolling text to HTML page?
I love using this code:
<marquee>Enter scrolling text here</marquee>
Put this code underneath the <body> tag:
<html>
<body>
<marquee>Enter scrolling text here</marquee>
</body>
</html>
Want to change the colour of the text?
<font face="arial" color="colour you want" size="8">
place that between <body> and <Marquee>
<html>
<body>
<font face="arial" color="colour you want" size="8">
<marquee>Enter scrolling text here</marquee>
</body>
</html>
The b tag makes text bold.
For example if you give the below code in your HTML page
This is a sample text and this part alone would be displayed in Bold. The rest would be normal
The output would be:
This is a sample text and this part alone would be displayed in Bold. The rest would be normal
How do you change the size of an HTML iframe?
---- iframe {width: 500px; height: 500px;} ---- That's the CSS code for changing an iFrame's width and height. Insert it in the page the iFrame's in, or wherever you put your CSS. If you don't use CSS, or it doesn't work, try this: ---- <iframe src='linktopage' width='500' height='500'></iframe> ---- ...And that's the code for defining the width and height of an iFrame within the iFrame tag.