Propeng
Sep 28 2007, 09:19 AM
KnowledgeHTML stands for Hyper Text Markup Language. You cannot create an HTML file using a rich-text editor, such as Microsoft Word or Wordpad. HTMLTo write a basic HTML, you will need to start with this: CODE <html> The < html> tag tells the browser that this is an HTML page. To close any tag, the same tag will be repeted but with the "/" sign. For example, CODE <html> <head> <title>Page title</title> </head> </html> Did you notice the < /title>, < /head> & < /html> tags? That's how we close the tag. The <HEAD> TagA < head> tag will include the < meta>, < title> and any other scripts that will NOT be viewed. First, we will write a < title> that tells the browser that "Example" (Inside the < HTML> & the < HEAD> tags): CODE <title>Example</title> Without the / tag, the script will NOT work!Then we will write the < meta>s: CODE <meta name="description" content="This is an example HTML script." /> <meta name="keywords" content="example html tutorial learn" /> <meta name="Other verification content, " content="such as Google Webmaster Tools verification meta."> The "description" meta is the description that will apear if your website is indexed by search engines. The "keywords" meta will be the keywords that if any one search for "learn html", your website will apear because the desc. meta contains on of the requested keywords. The < meta> tag will execute only if you put a "/" in before closing it. For example: <meta /> NOT <meta>. This page's result: CODE <html> <head> <title>Example</title> <meta name="description" content="This is an example HTML script." /> <meta name="keywords" content="example html tutorial learn" /> <meta name="Other verification content, " content="such as Google Webmaster Tools verification meta." /> </head> <html> BODYThis page is still blank, because we haven't created the < body> tag. This tag is the basic tag, which contains all the contents that will apear on your page. To create a simple page with the title "Example" & the contents "This is a test page.": CODE <html> <head> <title>Example</title> </head> <body> This is a test page. </body> <html> Basic text formatting<b> Bold, <u> Underlined & finally... <i> Italic textThese 3 tags are the most used, but not the all tags. To create a simple paragraph: CODE <p>This is a sample paragraph.</p> To continue learning the HTML tags, scroll down. Using javascripts in HTMLTo use javascripts in an HTML file, use the following: CODE <script type="text/javascript">document.write('Script Cotents');</script> To use an external .js file: CODE <script type="text/javascript" src="myjsfile.js"></script> More HTML Tags__ QUOTE To continue learning the HTML tags, scroll down. __ Using the <div align=""></div> CODE <div align="center"> Centered Text </div> <div align="left"> Left-Aligned Text </div> <div align="right"> Right-Aligned Text </div> To create an image: CODE <img src="http://mydomain.com/myimgfile.jpg" alt="Alternate text." /> The src is the image location. alt is the alternate text. If you have created a stylesheet, you can add class="Class name.". ______________________________________ |That's all i have, but the post can be updated!| ------------------------------------------------------- Next post: How to create an SSL. More HTML tags. The <?php ?> tag. AJAX. Using the < noscript> & the < noframes> tags. ___________________________________
Reply
Arbitrary
Sep 29 2007, 10:52 PM
QUOTE The <?php ?> tag. AJAX. Using the <noscript> & the <noframes> tags.
None of these have much relationship with basic HTML though. ;-) I'd suggest you add more information on other basic HTML tags rather than taking about server-side languages and javascript. Those could (and should) be covered in a wholly different tutorial. QUOTE The <meta> tag will execute only if you put a "/" in before closing it. For example: <meta /> NOT <meta>.
Actually, no, this is not true. For HTML, you don't have to close every tag the way you just did to the meta tag. You can write it like this <meta ... > and it will still work. In XHTML, you're expected to close every tag (i.e., <meta .. /> and not <meta ... >), but even then, browsers will usually still display it. It's not proper semantics in XHTML but it's fine in HTML, so it depends on what your doctype says. I believe browsers display it either way. QUOTE <html> <head> <title>Example</title> </head> <body> This is a test page. </body> <html> There's a slight error in this code of yours. The ending tag ought to be </html> and not just <html>. ;-) QUOTE You cannot create an HTML file using a rich-text editor, such as Microsoft Word or Wordpad.
Technically you can--just resave it as an html file and then load it into your browser. Most of the basic things on the page (i.e., tables, paragraphs) will be loaded, but (1) the html file won't be standards compliant (it wasn't made for the web after all) and (2) it might not render the same way on all browsers. Just sayin'. ;-)
Reply
Karmen
Dec 12 2007, 09:42 AM
hmm this is what i came up with <html> <head> <title>My Name Is Karmen</title> </head> <body> </center><h1>This Is My Webpage</h1> <br>Hi!</center> </body> </html> I tryed doing the center thingy but it didnt work. how come?
Reply
toby
Dec 12 2007, 01:42 PM
Karmen, you used </center> and </center>, it should be <center> and </center> or <style> body { text-align: center; } </style>
Reply
Karmen
Dec 13 2007, 11:39 PM
so if i was to do something like <html> <head> <title>My Name Is Karmen</title> </head> <body> <center><h1>This Is My Webpage</h1> <br>Hi!</center> </body> </html> then that would center the writing? also how do i change the color of the background and text?
Reply
wutske
Dec 14 2007, 09:05 AM
QUOTE(Karmen @ Dec 14 2007, 12:39 AM)  so if i was to do something like
<html> <head> <title>My Name Is Karmen</title> </head>
<body> <center><h1>This Is My Webpage</h1> <br>Hi!</center> </body> </html>
then that would center the writing? also how do i change the color of the background and text? That would indeed center all your text. I would usualy not use the center tags, but there good for starters  . If you want to set the background and textcolor, you'll have to add some information to the body tag: CODE <html> <head> <title>My Name Is Karmen</title> </head>
<body style="color: #898989; background-color: #AFAFAF;"> <center> <h1>This Is My Webpage</h1> Hi! </center> </body> The #898989 is a hexadecimal code that represents a color. The first 2 numbers are for red, the next 2 for green and the last 2 for blue. The larger the numbers, the more a color is represented. A few colors: White: #FFFFFF Red: #FF0000 Green: #00FF00 Blue: #0000FF Purple: #FF00FF Grey: #999999 If you don't understand the hexadecimal code, you could use names instead, but your limited to a certain amount of color:http://en.wikipedia.org/wiki/HTML_color_names
Reply
Karmen
Dec 14 2007, 07:33 PM
wow thanks for all your help, with this tutorial ive started to join my photoshop together and make my first website! once its done ill give you guys the link here so you can tell me if i've done anything wrong. thanks everyone who has helped me, and i just wana say if you need any help with c++ feel free to PM me.
Reply
wutske
Dec 15 2007, 07:35 PM
Hey Karmen, there's an online tool that can check if you did something wrong: You enter the link to your site on http://validator.w3.org/ and press validate, it'll check if everything is written according to the standards
Reply
Karmen
Dec 15 2007, 08:37 PM
QUOTE(wutske @ Dec 15 2007, 07:35 PM)  Hey Karmen, there's an online tool that can check if you did something wrong: You enter the link to your site on http://validator.w3.org/ and press validate, it'll check if everything is written according to the standards  oh ok, thats quite usefull. so i just click on that and enter my website address and it will check it for errors? edit: Just did that and i had like 60 errors  i googled most of them and figured out how to fix them. its quite helpful for new people and i would highly recommend using it. Thanks for all your help wutske.
Reply
ml01172
Oct 8 2008, 03:34 PM
You guys realize that half of those attributes are obsolete in HTML? If you try w3 validator, it will tell you the same thing. For an example, <... align="center">, <center>, <font color="...">...</font> etc. (everything related to exact "look" or "style" described in HTML) is obsolete and should NOT be used. CSS should be used instead. HTML in general is used only to describe document structure, not the document appearance. So, instead of <center> you should use style="text-align: center", instead of <font> one should use style="color: red; font-family: sans-serif", instead of BOLD, ITALIC, UNDERLINE (<b>, <i>, <u>) corresponding CSS variants should be used. Also, <em> should be used to define the given text as EMphasized, not only the style itself.
Reply
Recent Queries:--
basic knowledge about html editing - 110.49 hr back. (1)
-
html basic tutorial center - 272.35 hr back. (1)
-
google sample verification meta tag - 275.90 hr back. (1)
-
simple javascript rich text tutorial - 322.12 hr back. (1)
-
html tutorial "rich text editor" - 517.19 hr back. (1)
-
"html" basic - 535.82 hr back. (3)
Similar Topics
Keywords : html, basic, tutorial, beginners,
- Gimp Animation Tutorial
Read in the first part of the tut why i made another tut same as Lance (2)
Here Are Some Great Php Tutorial Sites
(4) these site very usefull for php html java 5 day ago i only use w3school recently i have some great
web for usefull http://www.devresources.net/ http://www.php.net/ http://www.tizag.com/phpT/
http://www.w3schools.com/php/default.asp http://phpbuilder.com/ http://www.phpfreaks.com/
http://www.w3schools.com/php/ http://www.hudzilla.org/phpbook/index.php
http://www.spoono.com/ http://codewalkers.com/ http://www.phpcs.com/ http://pear.php.net/
http://www.phpclasses.org/ http://phpdebutant.org/ http://www.phpfrance.com/ http://....
Good Books For Html And Css Beginners
(1) Hi all, Know any good books or tutorials for beginners? I've been using Site points learn
"Build your website the right way using HTML and CSS and can't recommend it enough. It's
completely XHTML compliant and is a great starting point? Seen anything else useful? I'd be v
interested in finding out about Javascript for beginners type things. Thanks, ....
How To Understand A Database Schema
A very nice and simple tutorial (4) Yesterday while i'm seaching for a data model and database schema at the Library of Free Data
Models for a new project of a friend of mine i found there this nice and simple tutorial on How to
Understand a Database Schema . As its name says, this tutorial will help you to better understand a
Database Schema and covers the following basics topics that every Database Schema must define:
QUOTE Primary and Foreign Keys. One-to-Many and Many-to-Many Relationships. Inheritance.
"Rabbit's Ears", (Recursive relationships). The Scope of this tutorial is ....
Linux Partitioning Guide (new Users)
A very basic guide to partitioning in linux designed for new users (1) QUOTE Partitioning Guide This guide is designed for users New to Linux. 1. All Linux users
run as just that 'a user'. If you are moving from Windows it is most likely that you ran
Windows as an 'Administrator' (root). In Linux, any task which alters the Operating System
(OS) of a Linux distro requires 'root' privileges. You will need the 'root' password
to do this. Basically, this gives you temporary access to the core of your OS. This is what makes
Linux far more secure than Windows. 1. That being said you will now understan....
Psychostats
Psychostats tutorial for cs (1) QUOTE Required Server Software A Web server (usually Apache or IIS) PHP v4.3 or any version
higher. MySQL v4.1.11 or any version higher. Windows ActivePerl v5.8 or v5.10 Linux Perl v5.8+
Required Perl modules DBI (v1.4 or higher) DBD::mysql (v3.0002 or higher) Optional Perl modules
Net::FTP - This is only required if you need to download logs from a remote FTP server (chances are
this will be installed by default with your version of Perl). Net::SFTP - This is only required if
you need to download logs via an SFTP server (secure SSH file transfer protoco....
Basic Html Tutorial
Made it myself, hope you like it. (1) HTML stands for hyper text markup language. It is a basic coding language used on almost every
website. There are some tags in HTML which must be used, whilst others are enhancing, but not
essential. Below I shall list the essential tags and there uses: This tells the browser that
the language between the tags is going to be HTML so it knows how to read it. Inbetween those tags
come These tags tell the browser that all the content that you wish to be displayed is in there.
They are the only essential tags for HTML! The list is short but if you only use them y....
What You Need Before You Can Create A Text-based Game..
Using PHP, HTML and MySQL (7) Please comment and rate, after you finished reading! /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />
################################################################# Change log: Aug 22 2008: The
Tutorial Was Created. V1.0.0 Aug 30 2008: Added XHTML and a small CSS part. Also corrected some
small things and added this change log. V2.0.0
################################################################# OK.. Many people here want to
create text based games. Many of you ask us here on the forums: "how to create a text-based ....
Joomla Template Kit Extension For Nvu/composer
help in understanding how to change html template to joomla (3) Hi Everyone, I am becoming quite (a lot) interested in designing with joomla, and need an
understanding of how to use the template kit extension in Nvu/Composer. There doesn't appear to
be any tutorials available on how to use a HTML template to insert and design with joomla modules.
Is there anyone who could shed some light on this subject. It would be MUCH appreciated.....
Moving To Fedora 9
Tutorial on how a newbie can move to using this fantastic OS Fedora 9, (1) INTRODUCTION Through this Post/ tutorial, I will try to explain to newbies and experts an
smoothly moving to Fedora 9. Also, I would explain only those topics that are hard to find on net,
or are not well documented anywhere. These are my experience of using Linux/Fedora. Motto: More
and more people realize and get FREE from all the GATES and WINDOWS. Table Of contents 1.
Installation 2. Setting the Stage 3. Get set n Go 3.1 Play Anything 3.2 Read anything 3.3
Desktop utilities 3.4 Connect ADSL 4. Tips and Tricks 5. Remarks. Remark: This....
How To: Display A Members/user List.
With PHP, Mysql, and HTML. (3) Alright, some of you might want to display your User's or Members on your site. Notes: 1.This
is to fit in with Feelay's register and Log-in scripts you can find in the tutorial section. 2.I
made this to show the members of my site who is a member and what their ID is. First off, we must
set up a connection to our MySQL Database. CODE <?php $con =
mysql_connect("localhost","database_username","database_username_password
4;); if (!$con) { die('Could not connect: ' .
mysql_error(....
Basic Css
(6) can someone help me learn CSS or give me a good link to learn it....
C/c++ -gdb Linux Debug Tool
Simple Gdb tutorial (1) To run the C/C++ file use $ gcc –g –o test sample.cpp To debug the code use following
command $ gdb test --- you will get following messages GNU gdb Red Hat
Linux (6.3.0.0-1.122rh) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered
by the GNU General Public License, and you are welcome to change it and/or distribute copies of it
under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty
for GDB. Type "show warranty" for details. This GDB was configured as "i386-redh....
Linux Beginners - Tutorial On Editors In Linux.
(3) This is a simple tutorial on the editors in Linux. I use these 3 editors for programming on linux:
1. vi -- available in all Linux and unix box, used to edit 2. vim -- not in all Linux flavors
and it has got default coloring of key words feature, used to edit 3. view --Its used only to
view, recommended to use for viewing of system config files, as it should not get edited without
your notice. Following are the basic commands comes handy with these editors #Open a file for
edit $ vi test -- creates a file if file is not exist in the current director....
Linux For Beginners- Easy To Install
(15) Which Linux distru is for beginners and Easy to install?....
How To Download Videos From Youtube
A Tutorial designed to inform of how to download YouTube videos. (11) This tutorial is to inform the reader of how to download videos from YouTube. I will also inform
you of how to convert these videos into MP4 format so you can put them on your iPod. First, download
Mozilla Firefox Internet Browser. This is, in my opinion, the most secure and customizable browser
available. It can be downloaded freely at http://www.firefox.com . After you have Mozilla Firefox
installed, open it and go to: http://www.firefox.com . When the page has finished loading, click
Add-ons at the top of the page. Once the page has loaded, click in the search....
Basics Of Php For Beginners - Suggestion
Help Needed For Project (5) Hi all, I have a friend who, for his extended IT project is interested in making a website partly
out of php. When he asked for advice my first thought was here. I would like to know some good
websites, tutorials etc that he can use to introduce himself to php (he hasn't done much
before). He is interested in making a simple login/subscription service where you can signup and
then login to a 'members only' page. Any ideas and code samples that you have to share would
be greatly appreciated. /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" a....
Php Tutorial: Making A Shoutbox
Requirements: PHP, MySQL (12) Hi everyone, I'm going to tell you how to make a simple shoutbox using PHP and MySQL. To start
off, open up mysql in the command line, or phpmyadmin, and create a database called shoutbox. Next,
enter the following sql into the command line, or the phpmyadmin sql box, while using the shoutbox
database: CODE create table messages(author varchar(30), message text, time
timestamp, mid int auto_increment, primary key(mid)); This creates the table we need
to store the messages, note the "mid" column, this gives each message a seperate id nu....
Photoshop Tutorial: Signature
(4) Intro: Ok let's get started. Open up a new 400x130 px document. Play around with any render you
feel like using. Resize it so that it's a good size for the signature. I will try to edit this
post with a image version of the sig later* 1.) Choose a radial gradient type from your gradients.
Pick black and another color. 2.) Click around the middle of the sig and hold it to around half-way
to the end. Re-try until the middle of your sig has a gradient in it. 3.) Move your render into the
sig and duplicate it 5 times (control+j) . 4.) Smudge the first one you co....
Phpbb - Installation Tutorial ( For Newbies Based On Astahost Cpane)l
phpBB 2.0.22 installation Tutorial with basic steps. (5) Introduction!! Providing a comprehensive 'How To' tutorial guide, on the
installation of phpbb 2.0.22 forum on your Astahost/cPanel account. Tutorial includes Downloading
of files Uploading using cPanel File Manager CHMOD using cPanel File Manager MySQL database
creation PhpBB initial configuration This guid will help everyone from beginners, with images and
an in depth guide of what to do. Step 1 To start with we need to download PhpBB ( latest stable
version is PhpBB 2.0.22 ). This can be done by visiting the PhpBB Downloads page wh....
Wireless: Bypassing Mac Filtering
Tutorial (10) Sometimes you scan the neighborhood for the wireless connections, you see open connections but can
not connect to them. Well this is possible because they use MAC filtering to secure up their
network. I will try to explain how to bypass this protection NOTE: This is for EDUCATION purpose
only to show you it is possible to bypass this security. I am not responsible for unauthorized use
of these information. Requirements : 1- You need some tool for sniffing the traffic. I suggest
using Aircrack-ng (http://www.aircrack-ng.org/) 2- You need some tool to change your MAC ad....
Converting PSD To HTML
(9) Hi I m new to this site. I have designed a layout in PSD. What i want is to know how can I slice
the PSD to build a Cross-Browser Compatible HTML file. Thank U.....
Video Editing Tutorial
Using VirtualDub (3) Video Editing Tutorial (using VirtualDub) Before I start with this tutorial please
download VirtualDub from VirtualDub.org . Many of us want to save just a small portion of a video,
discard unwanted scenes from a video or add a logo of your choice to the video. Its very easy in
virtual dub. First open the video in virtual dub. Virtual dub opens all kinds of video files with
exception of the wmv and asf format as these are patented by microsoft. But you can find a version
which opens asf too on doom9.org . Opened Video The bottom buttons are the co....
Making A Nice Looking Signature In Photoshop Cs
Some basic Photoshop skills required... (17) Here's a guide you can use to help you make a signature image in Photoshop CS. Before we begin
you need to pick out a good "render" for your signature. A render is basically an image that takes
the focus in your signature, the render I will use currently looks like this First off I hit
Ctrl+A and then Ctrl+C, then I go to File> New, and I set my image proportions to 410 wide, and 165
high. Then I hit Ctrl+V and right click the eraser tool I select the Magic eraser tool, I hold down
Ctrl and then left click my render. I move my render all the way to the right, th....
C#.NET: Web Timer Control Tutorial
C# & VB.NET (3) Web Timer Control C# Difficulty: Easy Time: 10 Minutes The aim of this tutorial is to create a
Timer that works on web pages. Timers are a very useful control in Windows Applications but how can
you use them in web pages. With the default controls you get in the .Net Framework there is not a
Web Timer. This web timer can be used as a normal web control you will be able to drag and drop it
onto Web Forms, and modify it using the properties window. This Timer Works using the JavaScript
setTimeout() function which once the required time has elapsed unlike a Windows F....
3ds Max Tutorial.
Introduction to reactor. (7) Letter Collision Tutorial. This tutorial will help u make a basic collision in 3Ds Max using its
inbuilt reactor feature. Requisites:- discreet 3Ds Max 7 (Does 6 have reactor?? I dunno....). Even
the trial downloaded from discreets website will do. Time:- 20-30min. Skill Level :- Beginner (A
basic knowledge of the menu items is a must for this tutorial) Introduction:- reactor is a plug-in
for 3ds max that allows animators and artists to easily control and simulate complex physical
scenes. reactor supports fully integrated rigid and soft body dynamics, cloth sim....
Visual Basic Help
need help useing visual basic (7) i was just wondering, when you are useing the program Visual Basic is there any way to add some
animation to a form, and if so what is a good(cheep) animation program i could get?....
How To Remove Bad Sectors Or Bad Clusters From HDD
a tutorial for you all (17) hi friends, there is small tutorial to remove Bad Sectors from hdd to remove bad sectors you need a
program named SeaMap now we start Start the SeaMap.exe software Set the option by typing SD and
then press enter Press 1 then 0 or 1 to select drive Then press 2 and there will be a option (Y/N)
press n for No Press Esc button one to go back to command line Type FD Type y for yes the Hdd will
format the whole disk and removes bad sectors and partitions Now the computer has to be restarted,
Restart your computer Partition your Hdd using fdisk and then format all partitio....
Basic Tutorial: PHP GD
basic tuts (16) With php gd is the image function library of php. The functions include in this library enable php
users to creating image up to manipulating photos. PHP gd can create with file extension of jpg,
gif, swf, tiff and jpeg2000. Installation see http://www.php.net/manual/en/ref.image.php .
Astahost hosting service has enable gd library, so won’t need any extra works except in coding.
Lets get started, creating images from php set the canvas: CODE $img =
imagecreate(250, 80) imagecreate this function create and set a blank canvas with the
wide of....
Converting HTML over to XHTML
Crossing over to the darkside (13) Allow for alterations Well, I've just had to convert another HTML 4.01 Transitional website
over to XHTML (eXtensible HyperText Markup Language) 1.0 Transitional, I will later on convert over
to XHTML 1.0 Strict as soon as I write the CSS (cascading stylesheet) file for it but it had to be a
quick update and removing all presentational elements and placing them in a CSS file is not quicker
than just altering some tags. So this is where I got the idea to write a How to Convert HTML over
to XHTML . Let's begin I'm having trouble knowing where to start ....
Looking for html, basic, tutorial, beginners,
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for html, basic, tutorial, beginners,
|
advertisement
|
|