Showing posts with label html. Show all posts
Showing posts with label html. Show all posts

Change Icon in Blog

Change Icon in Blog with Favicon

Favicon is a small icon image that is displayed in the address bar and browser tabs.

With the favicon is indeed seem attractive, even we can memorize a web site with just seeing his favicon, if we have a lot of bookmarks in our browsers, so we'll see a wide range of favicon there.

Blogroll Tips

We all know that blogroll is list of blog addresses in our blog page. For the friend who just made a new blog and a blogroll only some of this paper may not be too helpful, but may perhaps later after the link pal amount to hundreds or even thousands of this information could be useful. Indeed, as I had said earlier that the link exchange is very useful, but ... if you have hundreds or even thousands links, of course, you will have a problem, that is, of course, this link will take place with a lot and so it is not nice to the eye of visitors. Well if my friend has this problem, then I will give some alternative solutions. Namely, among others:

Multiple Target Hyperlink

Link on a website or blog is generally used to provide a single link, whether it was an open target location or the target of open window.

Well, here we will modify hyperlink to open several new target window tabs in one link. So when users click the link it will open more than one tab with different address. I often see this technique in a website/blog with many advertisement.

Here is the code to make multiple target hyperlink:

Introduction to the Content Management System (CMS)

Content Management System (CMS) is an application designed to create, arrange and improvise data. Simplifying the complex and complicated process of publishing content on your website or intranet. In CMS, the data can be anything - text, images, movies, data technology, and others. With this convenience even a layman can create text and multimedia content to the features page by using this clever application. In addition to his ability that quite a lot in terms of web page design and publishing, CMS is also used to perform tasks such as:

Manage web pages and text

In organizing a web page we should pay attention to the composition of heading, set the background color, select the font type, font size appropriate from h1-h6, alignment, line-height or line spacing and so forth.

Actually it needs to know to bloggers to understand one of them is improvement in the CSS. For readability, it suggests the em unit.

Well .. if we notice in provision of units sometimes vary in the existing templates that provide px, em, pt and percentage (%).

Dark And Light Picture Effects

Dark And Light Picture Effects On The Blog Post

When bloggers write an article, usually it can not be separated from the image as a complement to an article that aims to provide a description / explanation of the article or as a complement. Actually the picture / image on the post could be given a little additional effects to enhance your appearance by making use of hover effects. When the mouse pointer is in the picture you will see a change where the images are initially visible light will turn dark. For you all who would like to try please follow these simple tips.

Transfer Protocol

Transfer Protocol

Transfer Protocol is a protocol used for sending information on the Internet. In addition to HTTP, the Internet is also known for several other protocols, including:
  • FTP (File Transfer Protocol). This protocol is designed to allow users to transfer files in text or binary format in the server computer on the Internet. Example ftp.usma.edu/pub/msdos/.
  • Gopher. This protocol is designed to access a gopher server. Example gopher://wiretrap.spies.com/.
  • News (Network News Transfer Protocol). Protocol to distribute news on Usenet. Usenet is a system designed as a forum for discussion based on topics called newsgroups. Example: news:comp.infosystems.www.announce.
  • Telnet. A protocol used to log into a server computer.
With these protocols, your browser can act as a client of that protocol.

HTML Version

Information about HTML Version 

A valid HTML document that will declare HTML used in the document.
Known as document type definition DTD (Document Type Definition).
In HTML 4.01, there are 3 DTD and every author of the document must include one of them, 3 DTD are:

HTTP Status Code

HTTP Status Code 

If you are on time to do a request to an HTTP URL address and get error messages or status messages, here are some error messages and describes their status on HTTP which is usually often you come across when doing a request to an HTTP URL address.

Automatic Logout Session

Script timer Session, Automatic Log Out

Many things happen if someone has managed to login as a user, and of course this is when the user login will utilize the services of a website, not because of other reasons, such as poor levels of security. There is always an idle period. Idle here means users do not do anything at all on the website, did not move a page, do not enter any input on the form, and nothing cause a web page refresh, in other words a user does not do anything on the website through which he was visiting. 

Padding For Exclusive Views

Padding For Exclusive Views

Padding or empty space big enough influence to a web design layout. An empty space can give prominence to the content in the empty space. In the science of visual communication, the term space called the whitespace is a space where readers can rest visual senses for a moment or "breathe" and view content in the whitespace more concentrated.

HTML 5

About HTML 5 

HTML 5 that are now beginning to be implemented by some grade A browser will bring more than just a feature for page layout and format. Some of them are Canvas and Video.

The Story Behind CSS


The Story Behind CSS 
CSS works as a complement to HTML. If you're new to learn HTML, then try to learn CSS as well. And you will be surprised with the results ..!
 
CSS allows web developers to separate the HTML from the rules for forming the look of a website. But sometimes, many people are just learning HTML, underestimate the power and flexibility of a CSS.
So what's the style sheet (CSS) it really? what purpose exactly? and how do you use?

Website Property


Tips for Web Design : Website Property

Do web developers understand how long people will visit the website?
Whether we are an internet newbie or experienced marketer, we need to understand the best thing about the website, design a part that is related to successful convenience.
 
Here are tips for success of a web:

Bookmark With Link


How Make Bookmark with Link

You'll often find links like "Bookmark this site", which if we click the link it will directly go into the Favorites. By entering the site to your Favorites, then we no longer need to bother typing in the site name in Address Bar, but simply by clicking a website listed in your Favorites list.

To create a bookmark link, enter the following code between the tags <HEAD> and </ HEAD> on your web page:

HTML Link Title

Showing title on the link
Do you already know the attribute "title" on the A HREF tag? Attribute "title" is used to display information on a link. Example:

<a href="http://tophtml.blogspot.com" title="HTML Tutorial and Tips, make your own website..."> Top HTML Tutorial </ a>

If the mouse cursor is directed to the link will display the description "HTML Tutorial and Tips, make your own website..."

For example, point your mouse over the link below :

CSS Text Background

CSS Text Tips

Creating Text with CSS Background
What can you do with text is to beautify the text with the background color of the text. You do this by providing the background-color syntax.
<body> <h1 style="color:#FFFFFF"> <span style="background-color: #006699"> HTML Tips</ span> </ h1> </ body>

HTML Font Color


HTML Font Color

Syntax of HTML Font Color :

<font color="red"> ... </ font>

COLOR attributes you can use to set the font color. There are 2 ways to give color to the color attribute. The first way by specifying a color that you want to use such as: red, blue, yellow, etc.. The second way to use RGB values in hexadecimal, for example # 00FA0B.

PHP Object Data Type


Object Data Type

Object is a data type that can be either a number, variable even a function. Objects created with the intent to assist programmers who are familiar with OOP (Object Oriented Programming), although the facilities provided OOP PHP is still very limited.
Consider the example below object.php:

PHP Array


PHP Array

Array is a type of structured data that is useful to store some of the same type of data. Parts that make up the array called array elements, each element can be accessed separately through the array index.

One-Dimensional Array
<?
$country[0] = "England";
$country[1] = "France";
$country[2] = "United States";
$country[3] = "Japan";

print ("I live in $country [2]");
?>