HTML (HyperText Markup Language) is the predominant markup language used for creating web pages. In modern web pages, HTML is used to markup the contents of the website, while CSS and Javascript are used to define the styles and behaviors respectively.

learn more… | top users | synonyms

-1
votes
0answers
11 views

Three (hopefully small) issues with newly launched website [closed]

I'm a database developer posing as a web design guy for a friend. I have three issues with a website I've launched that I was hoping someone on here could help me with. Just a push in the right ...
1
vote
1answer
23 views

Can one spread rich snippet breadcrumbs markup all over a page?

From here, we have an example of a rich snippet breadcrumb implementation: <body itemscope itemtype="http://schema.org/WebPage"> ... <div itemprop="breadcrumb"> <a ...
0
votes
0answers
16 views

After a user hits the submit button, how do I make an image or icon appear over another image? [closed]

This question is for a website coded in HTML. mapquest image *I pulled the above image from google (located on mapquest.com) and I do NOT own this image. With that said, please look at this picture ...
0
votes
0answers
14 views

Script problem on website [migrated]

When I use dynamic options, the second option looks strange when the script is run. I've made a fiddle with the problem http://jsfiddle.net/niklasro/GqGGA/ but it won't run the script that should ...
2
votes
1answer
55 views

Is it acceptable practice to change the behavior of old HTML tags?

In my app I need to display some maps. So I use Leaflet.js to do so, but to simplify my HTML I have used a <map> tag to do so. Is that acceptable, or should I avoid doing this?
0
votes
0answers
10 views

script error: 'c is not a function" [migrated]

I get the following javascript error when I debug in firebug: 'cities' is not a function. What I'm trying to achieve is dynamic options and it used to work, this is just a new version of the page ...
-1
votes
0answers
10 views

User Interface Forms [closed]

I created a webpage using HTML 5 Coding in Notepad++. I am trying to get the form to send the completed form with information to my email when they finish. Is there a way to do that without the use of ...
5
votes
3answers
98 views

Do I really need to remove special characters in a URL?

I have an FTP account shared with friends where we upload underground music albums and then we use the links to share the downloads in a music forum. The problem is that the album names are in french ...
0
votes
0answers
10 views

Why this cell do not autoresize in IE but works well in Firefox? [migrated]

http://isikota.com/mail/ios/home.html In firefox it works fine In ie it looks horrible. If I send the html via email it also looks horrible. The key here is this edge: <td ...
0
votes
0answers
8 views

Width of table cell is linked to the width of cells on previous rows [migrated]

Note: I found a simpler sample that shows this problem. So a table has 3 column. Each row has 2 cells. In the first row, the first cell has colspan 2 and the next cell has colspan 1. In the second row ...
3
votes
2answers
51 views

2013. Do I need to care about HTML entities?

I'm wondering if I should go out of my way and replace all chars like ÜÖÄ on my site. I understand that PHP can get these wrong, but is there an actual reason, why I need to put them out as HTML ...
-1
votes
0answers
15 views

How align product attributes in woocommerce? [closed]

have problem with product attributes. Have this code: <div id="atributy"> <div class="atributy-left">Material</div> <div class="atributy-right"> <p>Ocel</p> ...
0
votes
0answers
7 views

Using Magento Header and Footer with vBulletin [migrated]

I have a Magento website currently in development and would like to have vBulletin 4 forums setup for my customers. Is it possible to use the Magento Header/Navigation and Footer with vBulletin ...
7
votes
4answers
477 views

Will enclosing an <h1> element inside a <p> element affect SEO?

Is it okay (SEO-wise) to construct the following line as such: <p>These are the best <h1> Cheap Widgets </h1> ever. </p> Wondering if this looks too unnatural for search ...
1
vote
1answer
34 views

<span> tag inside <h1>: is the same as normal <h1> for SE?

Are still SE recognizing this below as the <h1> tags without other tags inside? <h1><span>App</span>Strap<span>.</span></h1>
1
vote
0answers
17 views

Blank lines are removed in the HTML <pre> tags in IE10 [migrated]

Empty lines inside the tag are displayed ok in the latest Chrome and Opera browsers, but in IE 10 they are removed. Is it a known issue, or is there a CSS or another setting to display the tag ...
-1
votes
0answers
23 views

Why does Firefox appear to ignore percentage width values? [closed]

On the front page of a particular website, I have split it up into two parts, the main part of the page which includes the news feed is %75 whilst the part adjacent to it is 25%. They are both under ...
1
vote
2answers
44 views

HTML: Images always getting reloaded from server

I am finding that my web pages' images are always getting loaded from my server, even though they never change. Since these are images, not pages, I can't include an expiration date for them... How ...
0
votes
0answers
12 views

Why does my navigation bar not go the entire width of the website? [migrated]

The container width on CSS is 100% but it stops a bit before the end of the page. HTML Used <div id="nav-container" <ul id ="nav-list"> ...
1
vote
1answer
43 views

Which editor creates file with extension html.add

My sister teaches HTML language on the university. Students have to build their own website during class but one of them gave the project with weird code which cannot be written by hand. Moreover each ...
1
vote
1answer
17 views

Anatomy of HTML by big name companies [closed]

Are there any blogs or other postings that detail the anatomy of HTML code served by a very big name commercial operation like say Google, Apple, Twitter, Facebook, etc? I'm just asking for a close ...
1
vote
0answers
22 views

After my studies at Codecademy.com [migrated]

I've finished my HTML and CSS course at Codecademy and now I want to study Python. Before I do I would like to build a small website about the things I'm about to learn, just to practice my HTML and ...
2
votes
2answers
41 views

Automatic HTML clean up

What are some of the most popular tools for automatically cleaning up HTML code to its cleanest and most best practices rendition? The only one I know is the venerable HTMLtidy. Please see this for ...
0
votes
0answers
17 views

Creating color schemes in CSS and HTML [closed]

i was looking for tutorial which will explain me how to create and load color scheme on my HTML site. I have base.css green.css and orange.css. Now, when site is loaded default color scheme is green, ...
0
votes
3answers
36 views

How UTF-8 represents more than 256 characters and when to use UTF-16?

We all know what character encoding is. Like the simple ASCII 7 bit used for normal 128 characters representing and UTF-8 for representing 256 characters. I have 2 questions: Some people saying ...
2
votes
1answer
114 views

What are the advantages of Schema.org's microdata vs Microformats et al?

I'm confused about which microdata methodologies to employ on my site, is there an advantage to implementing the attributes from Schema.org, vs one like Microformats?
0
votes
1answer
53 views

If H1 tags are not used for page titles, what is the impact on SEO?

I'm wondering what kind of effect will be witnessed on SEO if, say, a div was used rather than an h1 tag for page titles. I imagine it would be very frustrating for screen readers and wouldn't give ...
0
votes
0answers
16 views

HTML structure and informations for image thumbnail - SEO [duplicate]

I wonder will the content which shows on focus for the images in this tutorial be indexed properly by search engines?
1
vote
1answer
43 views

Reading .mht webpages from server

We have some .mht files which load fine from local files but when loaded from the remote webserver display as junk text. What can I do to make them work correctly from our webserver?
-1
votes
2answers
43 views

Getting started with a website [duplicate]

So I know HTML, CSS, Javascript, jQuery, PHP. But I'm not sure how to put it all together to begin making an actual website. I'm not looking at something too big here since I'm just a beginner, but I ...
2
votes
3answers
58 views

How to determine which files are used by website

I recently became responsible for a PHP / HTML / MySQL website. The document structure is full of duplicate files and folders making the site appear more complex than it is. Is there any tool I can ...
0
votes
2answers
40 views

Trying to create my first sitemap

I'm inserting a website map for the first time. I found this page: http://www.sitemaps.org/protocol.html That page shows examples about sitemaps with xml, should I insert and xml code in my html? ...
0
votes
0answers
67 views

Sencha TOuch IDE (WebStorm) [closed]

I am new to Sencha Touch Framework. I am starting to develop a sencha touch application. I am stuck at using the right IDE for the development. Right now I am using Webstorm IDE for running the Sencha ...
2
votes
3answers
37 views

Are there any HTML Editing Services? [closed]

I tried to Google this and didn't know where to start. I have thousands of html templates that need to be hand edited because they are malformed so scripting my changes is darn near impossible or at ...
2
votes
3answers
69 views

Should I use both Robots.txt and META NAME=“ROBOTS”?

I am currently using the Robots.txt file (the standard one of joomla, to say). Now I have found that there are also specific HTML meta tags that specify desired robot behavior. Is there a reason to ...
-1
votes
1answer
24 views

Tracking Y position with HTML5? [closed]

Im wondering how site like Random blog link track y position of my view and then change some 'canvas' or whatever is it to point some menu option. Any1 knows ?:)
0
votes
0answers
32 views

How to Grok (Modern) HTML & CSS? [closed]

I'm a programmer at heart, but I've always wanted to understand more about HTML and CSS. Unfortunately, every resource I have tried to learn with I have found lacking. Every book/tutorial I've read ...
2
votes
0answers
48 views

is w3schools a valid resource foir learning html/css/php etc… etc [closed]

I recently came across w3fools.com via html5 Google plus community, and read some things they were saying about w3schools.com. I have not the knowledge to say they are completely wrong, or completely ...
0
votes
0answers
56 views

Horizontal drop down CSS menus [closed]

I'm trying to setup some horizontal CSS drop down menus. Where things get different for me, is that both main menu and submenu must both be horizontal, and text aligned right - purely for synthetic ...
1
vote
0answers
36 views

Best practice when modelling a website's code [closed]

When developing with object oriented code you use an UML diagram to describe all the classes of the program. What about websites? I have a prototype made with justinmind prototyper so I know how the ...
4
votes
1answer
272 views

What is the way to properly implement a Facebook Like button on a page for best SEO purposes?

On our site we want to put a Facebook Like button/widget-thingy. It is possible to create a like button, where the URL associated with the button is the page it sits on, rather than a Facebook page. ...
3
votes
1answer
197 views

html 5 doctype & SEO

I am trying to get my pages validated using Markup Validation Service on W3C validator. We are getting validation against the XHTML 1.0 Strict doctype comes back with the following error: ... ...
2
votes
2answers
31 views

Test different timezones

What is a simple way to temporarily change the timezone in Chrome so as to test how a site renders for different locations? On OSX Mountain Lion, I've tried as bash script with: export ...
3
votes
4answers
203 views

What is the maximum size of an HTML file that Google will crawl through?

I have a 10MB HTML file. Will Google crawl through the entire file, or does it only look at the first X MB?
-4
votes
1answer
26 views

Font creation for logo [closed]

I have a template and that template has a logo. The logo is something called "Cream". I really like the way it has been set up. I want the same style with different name. How to do that? The problem ...
0
votes
0answers
18 views

How to do I redesign a Flash based table page into something AJAX? [closed]

Shortly, I will be redesigning this page: https://www.misoenergy.org/MarketsOperations/RealTimeMarketData/Pages/LMPContourMap.aspx It currently uses a Flash object to draw the table you see from the ...
0
votes
1answer
55 views

How do I create a circular gradient in HTML or CSS? [closed]

Hey guys I'm wondering if you know of any way on how to create a circular/elliptical gradient that has many colors? An example of this is shown on the background of this Microsoft logo picture: ...
1
vote
1answer
37 views

google apps domain verification issues

I apologize for asking this here instead of Google's forums, but I find that they tend to yield no results at all, ever. I have a domain verified on Google Apps through HTML file upload, which I am ...
0
votes
0answers
16 views

MLS Search Widget (regional) [closed]

Does anyone have any experience with regional MLS search widgets? I am doing some work with a real estate agent (who wants to get rid of his cookie-cutter, pre-paid real estate web site and) who now ...
2
votes
2answers
92 views

What are reasons of latency for a HTTP request to load HTML?

I would like to know what are reasons of latency for a HTTP request to load HTML part of a webpage. I think about: loading webpage with proxy not having a good web server (apache vs nginx) having a ...

1 2 3 4 5 13