Tagged Questions
0
votes
1answer
31 views
Can I use HTML5 tag in jsf(.xhtml)
I want to use some HTML5 tag in jsf file, such as , and so on, but it doesn't work because the suffix of jsf file is .xhtml.
Is there any possible to use HTML5 tag in jsf file??
-2
votes
4answers
35 views
Replace Content Here
Ok so on W3Schools, it has the image below. Is there a way to keep the outer orange/yellow part and simply replace the "Content goes here" by doing src="somehtmlpage.html" which contains only a body ...
1
vote
1answer
22 views
confused about xhtml5: no more `<?xml?>` and now mandatory `meta`?
I've been a longtime user of XHTML 1.0 Strict, and I'm now trying to switch to XHTML5 in my new projects.
I'm confused that <?xml version='1.0' encoding='utf-8'?> is no longer considered valid, ...
1
vote
2answers
35 views
Div container within main wrapper won't center
I basically have a #wrapper , #contentWrapper , #actualContent
I have my #wrapper centering the viewport, with width 940px; however I cant get my #actualContent to center within the main wrapper.
...
0
votes
1answer
35 views
Can't move DOM element to other position
This is getting tiresome. I'm trying to do a simple append from one element to another:
var contentBlob = $('<div></div>', {
"id" : "content-blob",
...
0
votes
1answer
26 views
Ideas on an alternative to the <nav> feature - MUST use XHTML Strict 1.0
doing a project at uni and I've completely misread the brief, used HTML5 in my project and realised that I'm not allowed to do this. Oops!
My only problem is, I've tried to convert it to XHTML Strict ...
0
votes
3answers
57 views
How to Display a Blank Data at an Unexisting Empty `<td>` Element in a Table
I think this question is easy... I want this HTML code of a table:
<table>
<tr>
<th>Heading 1</th>
<td>or</td>
<th>Heading 2</th>
...
1
vote
0answers
95 views
IE8: checkbox onclick not called when setting class to that
I have a code like this
<input type='checkbox' class='rating' id="sample" onclick='checkboxcheck(parameters)' />
<label for="sample"></label>
And CSS:
...
0
votes
1answer
49 views
HTML5 Image and Text are not inclined in the same place
I am learning HTML5 and I need some text along with the image . Image should be come on the left side and text should come on the center . what I am trying to do is I created a div layout into that I ...
1
vote
1answer
36 views
Chat application buddies presence status view refresh on response design?
What is the optimized way of displaying friends presence status in a table cell with custom divs? Order of display shall be Online and then Offline friends sorted alphabetically.
One crude way is to ...
0
votes
2answers
53 views
Space after attribute in html5
I have heard before that for xhtml, there ought to be a space between any attributes and the closing bracket of a tag. E.g. <a href="example.com" > instead of <a href="example.com">. Is ...
0
votes
4answers
35 views
How would i redirect to the different webpages with certain time interval
// when i create this html page it is just redirecting to the first url and how would i redirect to the next url after five minutes and i cannot make any changes to the urls all i can change is only ...
1
vote
4answers
107 views
Examples of <link> tag in a HTML using different 'rel' attributes?
Could someone provide meaningful examples of HTML <link> tag with different values of "rel" attribute?
Apart from the possible values explanation for the "rel" attribute, are there any ...
1
vote
2answers
73 views
Is there any benefits to use uppercase (or lowercase) letters with html5 tagnames?
I have searched and have read about this question. Some questions here:
Uppercase or lowercase doctype?
Should HTML meta charset be lowercase or uppercase?
and elsewhere have discussed it partially ...
0
votes
0answers
15 views
How to quickly wrap Definition Terms in HTML
I have a long list of definitions in the following format:
capital-
definition of capital
savings -
definition of savings
loans -
definition of loans
investment -
definition of investment
Is ...
0
votes
1answer
64 views
Disabling Html control
I got an aspx page with HTML controls,Based on the button click function I want to change the visibility of controls.If user clicks on EDIT,I want to disable the controls otherwise (NEW) enable the ...
0
votes
5answers
173 views
CSS - getting background color to fill drop down menu
New to CSS. I have a nav menu bar and I am trying to fill the background color (blue) in the drop down menu under "portfolio" when you hover over it. Any ideas? I think its because of that absolute?
...
-2
votes
4answers
134 views
Should I use pixels, em or neither? [closed]
I'm trying to get the definitive answer on something in css. I'm trying to figure whether or not I should use
line-height: 1.5;
or
line-height: 1.5em;
or
line-height: 15px;
A few sites say ...
1
vote
3answers
75 views
General entity“trk” is not defined and has no default entity error
I am trying to fix this validation problem:
general entity"trk" not defined and no default entity and reference to
entity "trk" for which no system identifier could be generated.
Here is my ...
0
votes
2answers
89 views
Converting my single page site to html5
At the moment I have a single page site (html/php) I created for someone about 2 years ago. I'm about to add an admin panel and plan on starting with html5 for it. I'm curious what I will need to do ...
0
votes
1answer
61 views
Footer floating over main content
So I have a site that scales down gracefully in the browser window but I am having an issue with the content outside of my header. The main and footer elements are just hovering in the middle of all ...
0
votes
2answers
71 views
Stairstep Div Formatting
I have a client who wants a particular design on their home page to match what is seen on their magazine cover. The basic stairstep design of the cover never changes but occasionally the images do. ...
0
votes
3answers
77 views
Why do we need to use such a difficult way to add a stylesheet [closed]
Why do we have a such difficult way to add a stylesheet to a page?
I mean javascript we add like
<script src="nope.js"></script>
and inline is
<script>
alert("I refuse.");
...
1
vote
2answers
68 views
What would happen to my SEO and Scripts if my <HEAD> tag was below my <BODY> tag?
Just thinking about it, XHTML1.1 spec and by extension, HTML5 (assumed)... well Markup is designed so that unless otherwise specified, "order" isn't supposed to matter.
Everything in the Body tag ...
0
votes
1answer
53 views
Z-Index/Overflow issue?
Please reference the previous question linked here: IE7 Subnav, two positioning issues
The second comment shows a solution to my original problem, which I have since implemented.
Now, I am having ...
2
votes
1answer
41 views
Is all XTML 1.0 Strict valid as HTML5?
I have an XHTML 1.0 Strict site. I'd like to swap over to HTML5. From what I've read, it's almost like XHTML could be considered a subset of HTML5, i.e. update the DOCTYPE and the encoding tag and ...
0
votes
1answer
207 views
Android browser does not load XHTML Jquery Mobile page
Consider the following XHTML page, page1.xhtml, which contains Jquery Mobile scripting:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
...
1
vote
1answer
65 views
HTML5 vs Transitional 1.0 Different height of cell?
My code looks like this:
<table>
<tr>
<td><img with height 27px></td>
<td><img with height 27px></td>
<td><img with height 27px></td>
...
-2
votes
1answer
44 views
What is the difference between the following html doc header
I found in most of html 4.0 page ,the doc header writes like that
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
but ...
0
votes
5answers
137 views
Getting certified for Web Developing; HTML vs XHTML [closed]
I want to take a College course on HTML and CSS to further my understanding and knowledge of HTML, CSS, and building web pages.
However, surprisingly, many schools in my area don't offer HTML ...
0
votes
4answers
85 views
firefox image loading issue [closed]
i loaded an image from my desktop
its loading properly in the chrome but its not loading in the firefox
providing by image tag code below
the problem is in this line
<img alt="Splitwise" ...
0
votes
1answer
312 views
Using HTML5 Mobile boilerplate (MBP) for developing mobile sites
I want to create a mobile site and want to target almost all devices from High end (Iphone,android) to low end (nokia's, LG Flip-phones).
Which method to choose for dvelopment:
Developing 2 sites ...
0
votes
3answers
166 views
dynamic width for h1 background
My CSS:
h1 {
background-color: #f7953d;
color: #FFF;
width: 100%;
padding: 6px 0 6px 10px;
margin-bottom: 10px;
}
My HTML
<h1>Hello World</h1>
The background ...
0
votes
4answers
602 views
Can I save input from form to .txt in HTML, using JAVASCRIPT/jQuery, and then use it?
Is it possible to save textinput (locally) from a form to a textfile, and then open that document to use it later on?
Just using HTML, javascript and jQuery. No databases or php.
/W
2
votes
5answers
332 views
HTML5 html-tag and DOCTYPE
From what I've read, the correct way to start an HTML5 page is:
<!DOCTYPE html>
<html>
With nothing more in those lines. Is this true? (I'm asking because Visual Studio has more than ...
0
votes
1answer
68 views
What content can be outside head and body tags?
This may seem like a weird question, but i'm building some script that reads HTML files and i'm dividing the content to 2, body and head and was wondering if there could be other content i might not ...
-1
votes
1answer
242 views
Mouse over and off XHTML/HTML5
I am looking at creating a simple animation in where if you move the mouse open the button opens and you see a word, if you move off of it, the button closes.
What I want though is a reverse order of ...
1
vote
2answers
106 views
HTML - When using UTF-8 or ISO-8859-1 do I still need to type the codes for the special characters?
It is as the title says:
HTML - When using UTF-8 or ISO-8859-1 do I still need to type the codes for the special characters?
Or can I just type them normally?
Ex: I'm using UTF-8 in my HTML META ...
1
vote
3answers
105 views
How to show just one line of text in paragraph with width 100% which is part of the table cell?
I have an example:
<table class="border" style="width:100%">
<tr>
<td style="width:30%" class="border p10">
Test
</td>
<td style="width:70%" ...
2
votes
1answer
115 views
What is the purpose of <meta name=“directory” content=“submission”>?
What is the purpose of this html meta tag?
<meta name="directory" content="submission">
I found it on this list, but there is no explanation.
google hasn't helped either
My guesses:
...
4
votes
2answers
405 views
How to use HTML5 features with XHTML
I need some help with web programming. I have to do this assignment from school and the prof has given details on the structuring. One of them is that my site should be XHTML compliant (Strict or ...
0
votes
4answers
52 views
Way to start list from a certain number within xhtml doctypes
Now according to this post: Start a list from a certain number this has been deprecated, but it has been bought back in HTML5.
I'm not using HTML5, I'm using the transitional XHTML doctype.
So I'm ...
1
vote
1answer
57 views
Are XHTML-style empty tags considered invalid in HTML5? [duplicate]
Possible Duplicate:
Are self-closing tags valid in HTML5?
When using self-closed tags in XHTML, you use this type of syntax:
<img src="myimage.png" />
However, this is perfectly ...
0
votes
4answers
61 views
Coding a customized HTML box
I would want to code a box in HTML like the one I have added in the picture with the blue box cut at the top right corner.
I would like to know if I can do this or if this has to be taken as an ...
0
votes
4answers
441 views
Does this DOCTYPE tag make IE9 render a page in compatibilty mode?
I just started working on a website, and in IE9 it is rendering in "IE9 compatibility view" browser mode.
Is there anything in the following DOCTYPE tag that would force that?
<!DOCTYPE html ...
-4
votes
1answer
160 views
how to make a simple program on html5?
I want to learn something new like html5, please guide me on html5 I do not have any idea on html5 coding but I have a background on basic html here are my questions.
What is the extension name of ...
2
votes
5answers
2k views
In html5 to set a checkbox as checked, should i simply use checked ( as a property) or checked=“checked” ( as an attribute)?
Currently in our plugin we were setting the checkboxes as checked by setting
<input type="checkbox" checked="checked" />
This was to preserve xhtml compatibility. I'm more used to setting ...
1
vote
1answer
98 views
Sandbox to HTML without iframe?
I have a page with dynamic content provided by a crawler. But sometimes this content has problems in the HTML (without close tag, tag closed without opening, etc). So, this wrong content breaking the ...
2
votes
3answers
2k views
multiple form tags in page or one form tag?
I just have started HTML5 and want to know in general we should use one form tag in web page or multiple form tags ?
May be it depend on situation. But here are two different snarios.
One Sign Up ...
1
vote
3answers
121 views
Left margin is different in all browsers?
Using CSS3 I am trying to display search box with glass image. I am doing it basically by placing a image on text box and setting its left-margin. My code is here:
<body>
<form ...




