Sunday, February 14th, 2010
Write the XHTML tags to place the Web page file menu.html in the first frame and the home.html file in the second frame.
Write the XHTML tag required to create a frameset that defines two vertical panes. The first frame should use one-fourth of the browser window. The second frame should use three-quarters of the browser window.
Write the xhtml tag required to complete the basic frameset.
Just so you know, it isn’t really common practice to use framesets in XTHML. It’s preferable to use CSS. In any case, you can find info at http://www.w3.org/TR/REC-html40/present/frames.html about HTML 4.01 frames. You’d have to adapt it slightly for XHTML.
Technorati Tags: Browser Frame, Browser Window, css, Frame Html, Html Frame, Menu Html, Panes, Tag, Three Quarters, Web Page, Window Frame
Posted in xhtml | 1 Comment »
Sunday, February 7th, 2010
http://ogsolution.com – In this screencast, we are going to talk about embedding flash into a webpage. Video websites like Youtube and Revver usually use flash to show their flash movies. In addition, they allow users to copy the flash embed code snippet and paste it on some other webpage. That’s why you see Youtube videos on a lot of the blogs today. OG Solution does the same thing where the screencast are flash movies.
Duration : 0:7:14
(more…)
Technorati Tags: embed, exercise, html, language, object, param, Tag, web
Posted in html | 25 Comments »
Tuesday, January 26th, 2010
Out of curiosity, is there an alternative to CSS, particularly for positioning/layout, when styling xhtml content? I am excluding Flash as a viable alternative.
You can style without using actual stylesheets, but you’d have to use the "style" property in each tag you want to style and then that’s still technically stylesheets. Obviously you can style any tag using its built in HTML properties, but beyond that – using things like margins, padding, borders etc… on all tags is simply not possible without using stylesheets. I don’t really know why you’d have the need to try "styling" a page without "stylesheets" which are meant for that very thing.
Technorati Tags: Borders, css, Curiosity, Doctype, Html Properties, Margins, Positioning, Stylesheets, Tag
Posted in xhtml | 1 Comment »
Thursday, January 21st, 2010
In this html website design tutorial I will teach you how to change background and text colours/colors with microsoft notepad.
Difficulty Level:
Easy/Beginner
If you have any problems or need help with any of this tutorial please leave a comment below or message me on YouTube.
Duration : 0:3:3
(more…)
Technorati Tags: Background, color, colour, css, definition, design, develop, DIV, font, Hd, high, how, howto, hq, html, lesson, make, programming, quality, table, Tag, text, to, tut, tutorial, website
Posted in html | 25 Comments »
Thursday, January 21st, 2010
If it’s possible?
You use the "<a href=…" tag in html to link to a website.
You can type into the url bar something like "javascript:alert(’Hello!’);" to do a javascript injection.
How would you make a link in a web page that when you click on it, it does the javascript command?
Effectively <a href="javascript…">, except that obviously doesn’t work.
Thanks!
<a href="javascript:void(0)" onClick="Javascript:alert( ‘Hello!’ );">Text</a>
Technorati Tags: Hello, Href Javascript, Html Javascript, Javascript Alert, Javascript Command, Javascript Void 0, Lt, Onclick Javascript, Quot, Tag, Url Bar, Web Page, Work Thanks
Posted in html | 2 Comments »
Thursday, November 12th, 2009
They say it XHTML and CSS are both extensions of HTML. And when Im starting to make new website there is Doctype I need to choose – either HTML or XHTML..but doesnt matter what I choose I always use the same tags dont I?? I am very confused.
The only essential difference between XHTML and HTML is that XHTML must be well-formed XML, while HTML does not. (HTML 4 and earlier were nominally SGML, while HTML 5 defines its own parsing model in great detail.) Some examples of differences this imposes in practice are:
In HTML, some tags (e.g., <br>) are always empty and may not have closing tags. All elements must be explicitly closed in XHTML. XML permits two types of closing tag for empty elements: <br /> and <br></br>. In XML these are interchangeable, and either can be used freely for any tag. However, if xhtml content is to be served under a text/html MIME type to legacy browsers, only the self-closing form should be used for always-empty elements (like <br />), and only the explicit closing tag should be used for elements that are not always empty (like <div></div>). Otherwise, browsers will usually parse the tag incorrectly.
Similarly, HTML permits omitting end tags for some elements, such as <p>. Xhtml forbids this.
In HTML, almost everything is case-insensitive, while in XML, all element and attribute names are case-sensitive. XHTML requires all element and attribute names to be lowercase, while in HTML documents it’s common to find uppercase or even mixed-case names.
Various versions of HTML often permit quotes to be omitted from attribute values, e.g., <body lang=en>.[10] In XHTML, all attribute values must be enclosed by quotes, either single or double: <body lang="en"> or <body lang=’en’>.
HTML permits "attribute minimization", where boolean attributes can have their value omitted entirely, e.g., <option selected>. All XML attributes must have explicit quoted values, so in XML this would be written as <option selected="selected">.
Some required elements may be omitted in HTML, in which case they are implicitly added by the parser. For instance, various versions of HTML don’t require <html>, <head>, or <body> tags to be present unless they’re intended to have attributes. On the other hand, in XML the DOM must be determined without having to know which elements are required, so these tags must be specified explicitly.
In addition to these differences, some specifications define only an HTML serialization or only an XHTML serialization. XHTML 1.0 is roughly just an XML serialization of HTML 4.0, but XHTML 1.1, 1.2, and 2.0 have no HTML serialization, while HTML versions less than 4 have no XML serialization. HTML 5 is the first (X)HTML standard designed to support both HTML and XHTML serializations equally.
Technorati Tags: Attribute, Browsers, Case Names, DIV, Element, Empty Elements, Html Css, Html Documents, Html Tags, Legacy, Lt, Mime Type, Quot, Quotes, Tag, Text Html, Versions Of Html, xhtml, Xml Attributes, Xml Html
Posted in xhtml | 2 Comments »
Tuesday, November 10th, 2009
In this video I will teach you and show you how to add your website onto google and various other major search engines as well as show you how to add META tags to your html websites.
Follow Me:
http://www.twitter.com/edzjohnson
Music: Kevin MacLeod
Duration : 0:5:11
(more…)
Technorati Tags: advertisitng, design, engine, Google, html, learn, meta, Microsoft, msn, ranking, ranks, search, Tag, tagging, tutorial, website, Yahoo
Posted in html | 25 Comments »
Friday, November 6th, 2009
What is the html code for text to appear when someone moves the mouse over a picture?
People never know what they are talking about. The alt="" attribute is NOT the attribute that shows the tooltip popup on a mouseover of an image. Although Internet Explorer does show the tooltip on a mouseover using the alt="" atribute, it is doing it WRONG!
The proper attribute to use in jus about any tag is the title="" attribute. Add this one with the short text description you want along with the alt="" attribute to stay within proper coding standards.
Ron
Technorati Tags: Alt, Atribute, Attribute, Coding Standards, html code, Html Images, Html Text, Internet Explorer, Jus, Mouse Picture, Mouseover, People Talking, Picture People, Popup, Tag, Text Description, Text Html, Text Images
Posted in html code | 2 Comments »