Showing posts with label Website. Show all posts
Showing posts with label Website. Show all posts

Saturday, August 15, 2015

How to Change Font Color/Face/Size HTML

Changing the font color, face and size are all relatively simple, and are all contained within the same HTML
function. In order to just change the color, you can do the following:
<FONT COLOR="red">This is the text that the color applies to</FONT>
This is the text that the color applies to
Within the color field you may name a color, as shown, or you may use the HEX code of the color, which is the

preferred method, as seen below:
<FONT COLOR="#FF0000">This is the text that the color applies to</FONT>
This is the text that the color applies to
The color in hex code has a lot more ability and I would recommend that you use it so that you can have a unique
website. The hex code of red then green and blue, all up to 255 but in hexadecimal code. Please note that not all
monitors display all colors.
Changing the face of a font is also very simple and useful. You can change the face of the font to whatever font you
wish, but be careful, if a user does not have that font installed on their computer, then it will just show the default
font. You can change the face by using the following code:
<FONT FACE="Webdings">This is the text that it applies to</FONT>
       
Because people may not have the specific font type that you want it is a good idea to have backup font types
separating them by commas, as seen here:
<FONT FACE="BobsFont,Wingdings,Times New Roman,Times,Courier New">This is the text that it applies
to</FONT>
       
You can change the font size using two basic methods. You can do it by using the size attribute, or by using the style
attribute. The code for the size attribute:
<FONT SIZE="5">This is the text that it applies to</FONT>
This is the text that it applies to
Using this method, you can change the font from 1 to 7. I would not recommend this method. You could also make
the font change, compared to what it was right before as can be seen here:
<FONT SIZE="+2">This is the text that it applies to</FONT>
This is the text that it applies to
As you can notice the font size increased by two font sizes from what it was right before. You can go from -7 to +7,
where the -7 decreases the font size by seven and the positive increases it by seven. Another method of changing the
font size it by using the following:
<SMALL>The small text<SMALL>
The small text
<BIG>The big text<BIG>
The big text
The more commonly seen font size can be changed by using the font style attribute. You can use this code for
modifying that:
<FONT STYLE="Font-Size:20px;">This is the text that it applies to</FONT>
This is the text that it applies to
By using this, you can easily modify the font size from 1 and on. this is what most programs and websites use as
their font size.
Bolding/Italicizing/Underlining/Striking
You may also want to bold, italicize, or underline some of you website. It is very good for making things stand out.
You can bold something using the following code:
<B>This is the text that it applies to</B>
This is the text that it applies to Or you may bold by doing the following:
<STRONG>This is the text that it applies to</STRONG>
This is the text that it applies to
Or you may italicize using the following:
<I>This is the text that it applies to</I>
This is the text that it applies to
And another way to italicize is:
<EM>This is the text that it applies to</EM>
This is the text that it applies to
Or you may underline using the following:
<U>This is the text that it applies to</U>
This is the text that it applies to
Or you may strikethrough text by using the following:
<STRIKE>This is the text that it applies to</STRIKE>
This is the text that it applies to
Making Links
Links are extremely useful for bringing the user to another page that may be within your website, or may be another
website that you think would be useful to others. You can create a simple link using the following code:
<A HREF="tutorials.php">This is the text that it applies to</A>
This is the text that it applies to
There are several different types of links, for local pages, you would use something like the above. For links to other
sites, you may use something like the following:
<A HREF="http://www.onlinecomputerinstitute.com/12/2013/12/html">This is the text that it applies to</A>
This is the text that it applies to There are many different things that you can do besides just simple links, but this is still very useful.
+

What is HTML Tag ?

                        HTML Tags
What are 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>


Logical vs. Physical Tags
In HTML there are both logical tags and physical tags. Logical tags are designed to describe (to the browser) the enclosed text's meaning. An example of a logical tag is the <strong> </strong> tag. By placing text in between these tags you are telling the browser that the text has some greater importance. By default all browsers make the text appear bold when in between the <strong> and </strong> tags.
Physical tags on the other hand provide specific instructions on how to display the text they enclose. Examples of physical tags include:
􀂃 <b>: Makes the text bold.
􀂃 <big>: Makes the text usually one size bigger than what's around it.
􀂃 <i>: Makes text italic.

Physical tags were invented to add style to HTML pages because style sheets were not around, though the original intention of HTML was to not have physical tags. Rather than use physical tags to style your HTML pages, you should use style sheets.
HTML Elements
Remember the HTML example from the previous page:
<html>
<head>
<title>My First Webpage</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>
This is an HTML element:
<b>This text is bold</b>
The HTML element begins with a start tag: <b>
The content of the HTML element is: This text is bold
The HTML element ends with an end tag: </b>
The purpose of the <b> tag is to define an HTML element that should be displayed as bold.
This is also an HTML element:
<body>
This is my first homepage. <b>This text is bold</b>
</body>
This HTML element starts with the start tag <body>, and ends with the end tag </body>. The purpose of the <body> tag is to define the HTML element that contains the body of the HTML document.
Nested Tags
You may have noticed in the example above, the <body> tag also contains other tags, like the <b> tab. When you enclose an element in with multiple tags, the last tag opened should be the first tag closed. For example:
<p><b><em>This is NOT the proper way to close nested tags.</p></em></b>
<p><b><em>This is the proper way to close nested tags. </em></b></p>
Note: It doesn't matter which tag is first, but they must be closed in the proper order.
Why Use Lowercase Tags?
You may notice we've used lowercase tags even though I said that HTML tags are not case sensitive. <B> means the same as <b>. The World Wide Web Consortium (W3C), the group responsible for developing web standards, recommends lowercase tags in their HTML 4 recommendation, and XHTML (the next generation HTML) requires lowercase tags.
Tag Attributes
Tags can have attributes. Attributes can provide additional information about the HTML elements on your page. The <tag> tells the browser to do something, while the attribute tells the browser how to do it. For instance, if we add the bgcolor attribute, we can tell the browser that the background color of your page should be blue, like this: <body bgcolor="blue">.

This tag defines an HTML table: <table>. With an added border attribute, you can tell the browser that the table should have no borders: <table border="0">. Attributes always come in name/value pairs like this: name="value". Attributes are always added to the start tag of an HTML element and the value is surrounded by quotes.
Quote Styles, "red" or 'red'?
Attribute values should always be enclosed in quotes. Double style quotes are the most common, but single style quotes are also allowed. In some rare situations, like when the attribute value itself contains quotes, it is necessary to use single quotes:
name='George "machine Gun" Kelly'
Note: Some tags we will discuss are deprecated, meaning the World Wide Web Consortium (W3C) the governing body that sets HTML, XML, CSS, and other technical standards decided those tags and attributes are marked for deletion in future versions of HTML and XHTML. Browsers should continue to support deprecated tags and attributes, but eventually these tags are likely to become obsolete and so future support cannot be guaranteed.

For a complete list of tags, visit W3C.org. 
+

Thursday, July 23, 2015

Download Best Javascript Slideshow For CMS Website

Hello Freinds if you are web developer and want to a gadget of slideshow please download the below javascript code because the script is the best slideshow for CMS or other website
This auto JavaScript slideshow is feature packed and just under 1MB.

Don't worry because this script has been tested in Internet Explorer, Firefox, Safari, Opera and Chrome. This script is available for any personal or commercial projects under the free license and is offered as is free support provided.

Read More Feature Of This Gadget:
1. You Can Add It Anywhere In Your Template Or Layout.
2. Speed Up Loading Time.
3. Very Fast To Install And Easy To Use.
4.You Can Customized It’s Design Via Easy CSS.
5. You Can Also Change JQuery Code According To Your Desire.
6. Engage Your Readers In Your Awesome Articles.
7. Based Upon Carousel Slider Code.
8. It Will Show Post Top Image Thumbnail And Post Title.
9. Contain HTML-CSS-JavaScript-JQuery-Images Only.
10.Visitor Can Also Move Your Post Manually Through Buttons.
11.Automatic Slides After Your Desired Time.
12.You Can Push or Play Easy From the Top of The Left Courner From Slider.
13.You Can Change Thumbnail or Slider Width or Height.
14.And Many More You Can Customize Inside the Javascript.

Download the below file and extract the file and insert the code when ever you want.
<script type="text/javascript">

$(function(){

$('#carousel').infiniteCarousel();

});

</script>
Note: You need to insert above some code after the "<head>" or before the "</head>" section.
You can test this slideshow in to the offline browser before installation to your site server for example you can see the above image or play the below video
+

New Stylish Featured Slideshow Gadget For Website

Hello everybody if you  want to a gadget of featured slideshow of the new style please download the below javascript file and install that file in to your template because the script is the best featured slideshow for CMS or other website This auto JavaScript slideshow is feature packed and just under 305KB. we are always give you new style slideshow and here also we have posted for all of you a gadget of the slideshow so if you need you can use this it is 100% working in to your templates with any platform.
Nothing to worry because this script has been tested in Internet Explorer, Firefox, Safari, Opera and Chrome. This script is available for any personal or commercial projects under the free license and is offered as is free support provided.
Read More Feature Of This Gadget:
1. You Can Add It Anywhere In Your Template Or Layout. 
2. Speed Up Loading Time. 
3. Very Fast To Install And Easy To Use. 
4.You Can Customized It’s Design Via Easy CSS. 
5. You Can Also Change JQuery Code According To Your Desire. 
6. Engage Your Readers In Your Awesome Articles. 
7. Based Upon Featured Slider Code. 
8. It Will Show Post Top Image Thumbnail And Post Title. 
9. Contain HTML-CSS-JavaScript-JQuery-Images Only. 
10.Visitor Can Also Move Your Post Manually Through Buttons. 
11.Automatic Slides After Your Desired Time. 
12.You Can Change Thumbnail or Slider Width or Height. 
13.And Many More You Can Customize Inside the Javascript.

<script type="text/javascript">

$(document).ready(function(){
    $("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});

</script>
Note: You need to insert above some code after the "<head>" or before the "</head>" tag. and download the below file if you have inserted above code inside below the <head> or above the </head> section

You can test this slideshow after download the file in to the offline browser before installation to your site server for example you can see the here image or play the above video
if you are did not understand acording of our article please you can send us your feedback.
+