Thursday, January 28th, 2010
I have a word document that I want to implement into a web-based document server but I need the HTML source code to copy from the word document to the server. How can I get the source code (HTML) for a word document so I can do this?
A Word document does not have HTML source code. It is a Word document, not a Web page.
You can convert and export Word as html using a Save As function from Word, but the html code it creates is terrible.
Technorati Tags: Code Html, Convert Html, Document Server, html code, Html Document, Html Source Code, Web Based, Web Page, Web Server, Word Document, Word Web
Posted in html code | 1 Comment »
Sunday, January 24th, 2010

The sixth video lesson in this FrontPage tutorial series. You will learn: Using HTML Code: 1. The Basics of HTML Code 2. Optimizing html Code 3. Formatting HTML Code Using Style Sheets: 1. Creating a Style Sheet 2. Linking Style Sheets 3. Editing Style Sheets Making Forms: 1. Using the Form Wizard
(more…)
Technorati Tags: Code 3, Code Html, Frontpage Tutorial, html code, Html Style, Learn Html, Shopping, Style Sheet, Style Sheets, Video Lesson, Wizard, Yahoo
Posted in html code | No Comments »
Friday, January 22nd, 2010
Im creating a website and i have codes that i want to provide for people but, one i put the Brackets around the html code it automatically doesnt show anything or applys the code.
Is there a box i can put around it or somthing so it wont apply the code?
Well it depends. It you’re using BBC you just use [Code] and [/Code].
For html, I believe it’s <code> for computer code text. And <samp> for sample computer code.
Technorati Tags: Bbc, Brackets, Code Html, Code Text, Computer Code, Creating A Website, html code, Lt, People, Samp
Posted in html code | 2 Comments »
Friday, January 22nd, 2010
I have a generated html code for a form that I want to use but it always opens in my current window.
Is it possible to change the code so that the form opens in a new resized browser of the size I specify using only html? Any help, code, links, or tips would be helpful. The code I have starts/ends with the tag form.
i tried javascript but ie7 gives me that annoying warning about activeX content.
Play with this:
onclick="window.open(this.href,’mywindow’,
‘width=600,height=500,
scrollbars=yes,screenX=100,
screenY=100,top=200,left=100′)
;return false;" target="_blank"
width and height are self explanitory
scrollbars is too
screen is the position of the window
target="_blank" is the command that opens a link in a new window.
All of that goes inside your a href=" " tag. IY should all be one string – had to break it up so Yahoo sould post it all.
Technorati Tags: Break, Code Html, Html Browser, html code, Html Links, Html Tips, Scrollbars, Target Blank, Width 600 Height 500, Yahoo
Posted in html code | 1 Comment »
Thursday, January 21st, 2010
I want to place 2 codes; a pay pal button and adsense.
Do I google my own site and go to the actual page and go through the procedure (view, source and paste the html code there?
Or do I go into my website builder? (I know how to copy and paste)
1) you manage your site on an admin C panel, you need to edit with website editor, and in source code view lets paste the html codes. You should see if your online website editor has features, such as: AD manage AD codes.
2)you have FTP access to the site, you need to download with it, and place the advertisements and paypal buttons into the source code.
Technorati Tags: Admin C, Advertisements, Code Html, Copy And Paste, Copy Paste, Google, html code, Html Codes, Pal Button, Pay Pal, Paypal Buttons, Source Code View, View Source, Website Builder
Posted in html code | 9 Comments »
Wednesday, January 20th, 2010
I don’t want to download a single thing and html seems easy. Is there anyway to create a game with html?
html is not really designed for making games. But you can create games for a web-browser using javascript. There’s nothing to download either.. you can simply type the code into a html text document and open it in a web-browser.
Now if you want to use just html you could create a ‘choose you own adventure’ where the player is the protagonist in a story and has to choose from a number of options what to do at certain points in the story. html would be perfect for creating a game like this.
Technorati Tags: Code Html, Create A Game, Create Games, Game Codes, Html Codes, Html Document, Html Text, Options, Perfect Game, Protagonist, Single Thing, Text Document, Web Browser
Posted in html | 2 Comments »
Wednesday, November 18th, 2009
I wanted to start a website, and I know that there is a way to edit your own website online, add text and stuff, without changing the code in the html file. What is that called? How do I do that?
WYSWYG (What You See Is What You Get) Web Page Editors.
Try
www.webs.com if you want it online.
Or if you are ready to purchase any software then, i would recommend Dream Weaver.
Technorati Tags: Code Html, Dream Weaver, html code, Own Website, Stuff, Web Page Editors
Posted in html code | 1 Comment »
Tuesday, November 17th, 2009
What simple html code can put my recent wordpress blog entries, titles and dates, on my web page, newspaper or any other style?
No html code, because HTML just sites there, it doesn’t do anything. Some Javascript to pull your blog’s RSS could do it – just look for Javascript RSS reader code. Newspaper style or any other style is up to the code you write.
Technorati Tags: Code Html, html code, Javascript Code, Rss Reader, Web Page, Wordpress Blog
Posted in html code | 3 Comments »
Tuesday, November 17th, 2009
I would like to ad a banner to my website and is seeking help in inserting the html code to my site. Can anyone help me?
easiest way to do it is using your Style Sheet.
In the source code (html) you create a div id for your banner.
<div id="banner"></div>
In your style sheet you create a div id which looks like this:
#quote {
background:url(images/orange-banner.gif);
height:155px;
width:900px;
background-repeat:no-repeat;
background-position:left top;
}
Ofcourse, you choose what image you wanna link to and you select the height and width that suits your site.
Hope this helps you on your way.
Technorati Tags: Ad Banner, Background Position, Background Url, Banner Gif, Code Html, Div Id, Html Banner Code, html code, Images Gif, Lt, Orange Banner, Source Code, Style Sheet
Posted in html code | 2 Comments »
Sunday, November 15th, 2009
What is the code to embed a picture into html? I would like to embed small pictures, how do I go about doing this? Please give me the code for it.
If you want to make an image into a thumbnail, or small variations of the picture, you can resize them in a photo editing software.
Anyway the code for embedding an image to an html file is:
<img src="filename" height="height_of_image" width="width_of_image" alt="text_shown_if_image_doesn’t_load" border="numeric_value" />
Make sure that there is a space between the slash and the last quote. Additionally, the border attribute is used if you use the image as a link.
Technorati Tags: Attribute, Border, Code Html, Embed Html, html code, Html Embed, Html Img, Image File, Img Src, Lt, Photo Editing Software, Photo Software, Quot, Quote, Slash, Thumbnail, Variations
Posted in html | 2 Comments »