Skip to main content

Posts

Showing posts from April, 2012

Class_3::::>>>>HTML Link,Image & Image Link

<!DOCTYPE html> <html>   <head>     <title> Class_3::::>>>>HTML Link,Image & Image Link </title>     </head>       <body>         <a href="index.html" target="_blank" style="text-decoration:none;"> Mypages</a><br /> <a href="http://www.tbsbd.blogspot.com" target="_blank"> GoogleHomePages</a><br /> <a href="mailto:#" target="_blank"> Mail Of Admin</a><br /> <a href="http://www.tbsbd.blogspot.com" target="_blank"> <img src="logo02.gif" alt="This Logo" /> </a>     </body> </html>

TSDA Class Schedule List

Taieba Soft & Digital Academy (TSDA) www.tbsbd.blogspot.com Web Design Class No. Subject:-->HTML 1 Introduction of HTML,Basic Stru.HTML Elements, Defines Tag, Attributes and Text 2 Heading,Paragraph,Line Breaks, HTML Formatting,head tag(meta,style,js,title) 3 HTML Links, HTML Images, HTML link underline,Marquee,Images Mapping,Area 4 HTML lists(ol,ul,li), Nested List, menu_list,directory_list,defination_list 5 Audio,Video, Youtube Video,Mailto link 6 Table,th,tr,thead,tbody,tfoot, colspan and rowspan,nested table 7 Normal form, form alignment,fieldset,legend  8 Frame,Iframe, entites, color code, DTD and seo(meta) DreamWaver CS5 9 Dreamwaver Installation,How To use,Doctype,HTML Format,Version and  clasiffication CSS(Cascading Style Sheet) 10 Syntax,Classification, ID &Class, How to use ID & Clas

HTML Link--->Removing link underline

Removing link underline:   <html> <head> <title>This is my page</title> <style type="text/css"> <!--   A{text-decoration:none}   --> </style> </head> <body> <h1><p align="center">Welcome to Vertual IT Academy!</p></h1><hr /> <a href=" http://www.tbsbd.blogspot.com/ ">Free online Computer Tutorials no underline</a><img src="a.jpg" alt="" width="150" height="50" /> </body> </html> o r, <A STYLE="text-decoration:none" HREF="link.html"> This is an unusual link, it has no underline</A> <A HREF="link.html"> This is a normal link, it's underlined</A> used to do link properly.

Joomla Video Tutorials-08

Joomla Template Setup     8. Template Setup

Joomla Video Tutorials-07

Working with Menus in Joomla     7. Joomla Menus

Joomla Video Tutorials-06

Working with Joomla Extensions     6. Joomla Content

Joomla Video Tutorials-05

Working with Joomla Extensions     5. Joomla Extension

Joomla Video Tutorials-04

Things to Master Joomla     4. Things to Master Joomla

Joomla Video Tutorials-03

How to install Joomla Locally     3. Installing Joomla

Joomla Video Tutorials-02

How to create a local database for Joomla     2. Create Local Database

Joomla Video Tutorials-01

How to create a local server to install Joomla     1. 1.Local Server

(CMS) Content Management System

What is a Content Management System (CMS)? Content Management System (CMS) and other spin-off terms definition(s) CMS became a buzz word in the web development industry because of its benefits. CMS stands for Content Management System. It is a term and has not been endorsed with a solid definition. A CMS can have multiple meanings depending on the scenarios and the person's or project objectives. To add to the confusion, an organization named AIIM (Association for Information and Image Management) claimed the acronym ECM (Enterprise Content Management) and WCM (Web Content Management) as their creation and came up with their own definition that suites their organization's services. AIIM changed their definition of ECM a few times and submitted their definitions to Wikipedia, which is now published. At the time of this writing, for most scenarios, when someone in the web development industry is talking about CMS (Content Management System), or ECMS (Enter

HTML Tutorial - Elements

ELEMENTS HTML documents are text files made up of HTML elements. HTML elements are defined using HTML tags. HTML TAGS HTML tags are used to mark-up HTML elements HTML tags are surrounded by the two characters < and > The surrounding characters are called angle brackets HTML tags normally come in pairs like <b> and </b> The first tag in a pair is the start tag, the second tag is the end tag The text between the start and end tags is the element content HTML tags are not case sensitive, <b> means the same as <B> HTML Tag has two types.such as :      1. Element or container Tag code is <head>.......</head>      2. Empty Tag code is      <br/> ; <hr/> ; <img src="/../mypic.jpg" /> ; <input type="text" size="12" /> .....   Input Field HTML ELEMENTS Remember the HTML example from the previous page: Code: <html>