Small Business Website Design. Local, Mobile & Social Marketing.
Business to Customer Relationship Building One Link at a Time.
928-201-1832 Serving Bullhead City AZ, Golden Valley AZ,
Kingman AZ, Las Vegas NV,  Laughlin NV, Los Angeles CA,
Needles CA and surrounding areas
  • Home
  • Services
    • App Builder
    • Link Building Service
    • Local Business Directory List
    • Local Search Engine Marketing Service
    • Local Mobile SMS Marketing>
      • Local SMS Text Campaigns
      • Local SMS Lead Notifier
      • Local SMS Marketing for Real Estate
      • Local SMS Text Appointment Reminders
      • SMS Text Marketing for Restaurants
    • SEO Service
    • Social Media Marketing
    • Social Media Promotions
    • Website Design
  • Source Codes
    • Alerts>
      • Announcement Box
      • JavaScript Alert Box
      • jQuery Alert Box Plugin
      • POP UP Alert Box
      • Recent News Ticker
      • Text Alert Box
    • Browser>
      • Browser Drop
      • Chromeless POP-UP Windows
      • Cross-Browser Drop Shadow Box
      • JavaScript Mobile Redirect
      • JavaScript Redirect
      • No Right Click
      • Mouse Trail Effect
      • POP-UP Windows
      • Status Bar Scrolling Message
      • Splash Page
    • Buttons>
      • Add To Favorites Button
      • Close Window Button Close Browser Button
      • CSS Buttons
      • Highlighted Buttons
      • HTML Buttons
      • OnClick Message Button
      • Glossy Buttons With Rounded Corners
    • Colors>
      • Background Colors
      • HTML Color Chart
      • JavaScript Color Picker
    • Forms>
      • Add Site Submit Site Box
      • Change Background Colors Form
      • CSS Rounded Corners With Shadow Box
      • Enter Key Focus JavaScript
      • HTML E-Mail Form
      • Rate Our Site Box
      • Site Search Engine
      • Tables
      • Undeletable Text In Box
      • Voice Search Box
    • Games>
      • JavaScript Games>
        • Hangman JavaScript Code
        • Tic Tac Toe JavaScript Code
      • Flash Games>
        • Angry Birds Flash Code
        • Bloons 2 Flash Code
        • Spitfire 1940 Flash Code
    • Link Effects>
      • CSS Zoom
      • Hyperlinks
      • Hyperlink Colors
      • Image Links
    • Menus>
      • CSS Menu
      • Horizontal Menus
      • JavaScript Drop Down Menu
      • JavaScript Drop Down Menu Message Box
      • JavaScript Floating Menuu
      • JavaScript Pull Down Menu
    • Text Effects>
      • Backwards Text Effect
      • Dancing Links
      • CSS Text Glow Effect
      • CSS3 Text Shadow Effects
      • Flashing Text
      • Marquee Scroller Text
      • Named Anchors
      • Roller Coaster Text Effect
    • Tools>
      • Banner Rotator
      • GPA Calculator
      • JavaScript Clock
      • JavaScript Typing Test
      • Horizontal Lines
      • Keyword Suggestion Tool
      • Meta Tag Generator
      • HTML Copyright Symbol (©)
      • Password Protect Page
  • JavaScript Software
    • Banner Buddy
    • Drop Down Menu Generator Software
    • Drop Down Menu Template
    • Java Source Machine
    • Java Source Machine 2
    • JavaScript Pro
    • Script Jungle
    • Free Software>
      • Free Meta Tag Generator Software
  • JavaScripts and More Blog
  • Affiliates
    • Affiliate Marketing Program Software
    • Links Management
    • WWW Flash Templates
  • CSS Style Scripts
  • HTML Tutor
    • Dynamic HTML
    • HTML 5
    • HTML Codes Reference Chart
    • HTML Page With Left Navigation
    • HTML Special Characters
  • JavaScript
    • JavaScript 2>
      • JavaScript Toolbar
  • JavaScript Search Engine
  • Game Blog
  • Articles
  • Local SEO Forums
  • Link Exchange
    • Marketing Links>
      • Banner Marketing Links
      • Blog Marketing Links
      • Directory Marketing Links
      • Email Marketing Links
      • Link Marketing
      • Local Marketing Links
      • Search Engine Marketing Links
      • Social Marketing Links
      • Web Marketing Links
      • Website Submit Links
    • Web Development Links>
      • Flash Editor Links
      • Search Engine Optimization Links
      • Shopping Cart Links
      • Site Builder Links
      • Software Links
      • Tutorials Coding Links
      • Web Hosting Links

CSS STYLE SCRIPTS

What is CSS? CSS -- Cascading Style Sheets. A cascading style sheet (CSS) allows you to control the appearance of your fonts, links, tables and more. This sheet provides a listing of essential properties and values. CSS makes your job easier. Trust me, it really does. Let's add some style right now, OK?(Just in case you want to READ about CSS
here's the developers reference.)

Click link to open chart
cascading_style_sheet_reference.htm
File Size: 57 kb
File Type: htm
Download File


Indent a Paragraph

When you read a book you'll notice that the first line of a paragraph is usually indented. Until CSS came along, there was no simple way to do this on web pages.
 If you'd like to indent the first line of your paragraphs, just paste the following into the HEAD section of your page or add the middle line of code to your linked stylesheets:
 <style >
<!--

p { text-indent: 2em;}

-->
</style>

So let's see what that looks like. Be sure you pull down the code to see WHERE I placed it. (Go to 'VIEW' then 'SOURCE')
Click on link to see it in action

indent_a_paragraph.htm
File Size: 0 kb
File Type: htm
Download File


HIGHLIGHTING

With CSS you can highlight text on a page, making it look like you ran a yellow highlight marker over it. This is great for emphasizing important words or points.
 Just add this code to the HEAD section of your HTML page:
 <style >
<!--

.HL {background: #ffff99;
color: #000000;}

-->
</style>

What you've done is create a CSS class, and now the table is set. To use it to highlight a passage, you could write:
 <font >this is highlighted</font>
 The words "this is highlighted" will have a yellow background with black text. Of course, you can change those colors to anything you want by modifying the colors in the CSS code.
 Let's not stop there. OK? What about if we wanted to highlight an entire paragraph? If you don't like messing with tables, try this style tag:
 <P ;>
 All of the text in the above paragraph will be highlighted in yellow-orange. To change that color, just substitute any other hex code or use a color name.
 This CSS tag works in both Netscape and Internet Explorer. 


SPACING FOR LINES & PARAGRAPHS

Sometimes the designer (YOU) doesn't want so much space between paragraphs. (Like when using bullets or such) You can control the space between paragraphs -- and lines -- like this:
 You can set the line height for paragraphs with a little CSS in the HEAD section of your HTML document, like this:
 <style >
<!--
P {line-height : 12px;}
-->
</style>

Just change the "12px" to however many pixels you need it to be. The comment tags should be included to prevent crotchety older browsers from displaying the code.
 You can set the line height for paragraphs with embedded style sheets -- CSS in the HEAD section of your HTML document -- like this:

<style >
<!--
p {line-height : 20px;}
-->
</style>

Just change the "20" in 20px (pixels) to the number you need.
 You can also place the CSS code right in your HTML tag, as an inline style.
 <p "line-height: 20px;">
 Both methods accomplish the same thing. The advantage of embedding them in the HEAD section is that the line height will be applied every time you use a <p> tag. With the inline style, you have to insert the CSS code into each paragraph
 Now let's see what it looks like, both in CODE and diplayed in the browser.
Click on link to  see it in action
spacing_for_lines_and_paragraphs.htm
File Size: 1 kb
File Type: htm
Download File


CSS UNDERLINE/OVERLINE LINKS

There are some very cool ways to handle links in your page. Here's one that uses the CSS to make your links look different. Just try underlining AND overlining them, framing them between horizontal lines. Just add:
 <style >
<!--
A:hover {text-decoration:overline underline}
-->
</style>

to the HEAD section of your page. The underline and overline will display whenever a visitor moves the cursor over the links.
 A variation: If you remove the word "underline" from the above code, the link will be underlined (with no overline) at rest, and overlined (with no underline) when a visitor's cursor is hovering over it. 
Click link to see an example

css_underline_overline_links.htm
File Size: 0 kb
File Type: htm
Download File


FORM ELEMENTS

There is a lot you can do with CSS. Here's an example of CSS working with form elements. Form elements can be a bit boring...so we're going to liven things up a bit.
 Let's first start with a simple head tag that will color all the elements in a text field box.
Click link to view example

form_elements.htm
File Size: 1 kb
File Type: htm
Download File

Category-CSS

Tags-CSS Style Scripts
css styles
css scripts
css script
css style
css

Social

SiteMap

XML SiteMap

Payments

Official PayPal Seal

Share

Legal

Privacy Policy
Terms Of Service

Organizations

Website Design in Bullhead City

About

  • About Us
  • Contact Us
  • " By Shawn Lippert"
  • Website Design, Search Engine Marketing, Search Engine Optimization, Social Media Optimization,  and Website Consultation serving Bullhead City, Las Vegas, Kingman, Golden Valley, Needles, Clark County, Mohave County & surrounding areas.
          JavaScripts and More
          1671 River Gardens Dr
          Bullhead City, AZ 86442

Google
Copyright © 2013 JavaScripts and More a Source Code, Website Design and SEO Company
  • Home
  • Services
    • App Builder
    • Link Building Service
    • Local Business Directory List
    • Local Search Engine Marketing Service
    • Local Mobile SMS Marketing>
      • Local SMS Text Campaigns
      • Local SMS Lead Notifier
      • Local SMS Marketing for Real Estate
      • Local SMS Text Appointment Reminders
      • SMS Text Marketing for Restaurants
    • SEO Service
    • Social Media Marketing
    • Social Media Promotions
    • Website Design
  • Source Codes
    • Alerts>
      • Announcement Box
      • JavaScript Alert Box
      • jQuery Alert Box Plugin
      • POP UP Alert Box
      • Recent News Ticker
      • Text Alert Box
    • Browser>
      • Browser Drop
      • Chromeless POP-UP Windows
      • Cross-Browser Drop Shadow Box
      • JavaScript Mobile Redirect
      • JavaScript Redirect
      • No Right Click
      • Mouse Trail Effect
      • POP-UP Windows
      • Status Bar Scrolling Message
      • Splash Page
    • Buttons>
      • Add To Favorites Button
      • Close Window Button Close Browser Button
      • CSS Buttons
      • Highlighted Buttons
      • HTML Buttons
      • OnClick Message Button
      • Glossy Buttons With Rounded Corners
    • Colors>
      • Background Colors
      • HTML Color Chart
      • JavaScript Color Picker
    • Forms>
      • Add Site Submit Site Box
      • Change Background Colors Form
      • CSS Rounded Corners With Shadow Box
      • Enter Key Focus JavaScript
      • HTML E-Mail Form
      • Rate Our Site Box
      • Site Search Engine
      • Tables
      • Undeletable Text In Box
      • Voice Search Box
    • Games>
      • JavaScript Games>
        • Hangman JavaScript Code
        • Tic Tac Toe JavaScript Code
      • Flash Games>
        • Angry Birds Flash Code
        • Bloons 2 Flash Code
        • Spitfire 1940 Flash Code
    • Link Effects>
      • CSS Zoom
      • Hyperlinks
      • Hyperlink Colors
      • Image Links
    • Menus>
      • CSS Menu
      • Horizontal Menus
      • JavaScript Drop Down Menu
      • JavaScript Drop Down Menu Message Box
      • JavaScript Floating Menuu
      • JavaScript Pull Down Menu
    • Text Effects>
      • Backwards Text Effect
      • Dancing Links
      • CSS Text Glow Effect
      • CSS3 Text Shadow Effects
      • Flashing Text
      • Marquee Scroller Text
      • Named Anchors
      • Roller Coaster Text Effect
    • Tools>
      • Banner Rotator
      • GPA Calculator
      • JavaScript Clock
      • JavaScript Typing Test
      • Horizontal Lines
      • Keyword Suggestion Tool
      • Meta Tag Generator
      • HTML Copyright Symbol (©)
      • Password Protect Page
  • JavaScript Software
    • Banner Buddy
    • Drop Down Menu Generator Software
    • Drop Down Menu Template
    • Java Source Machine
    • Java Source Machine 2
    • JavaScript Pro
    • Script Jungle
    • Free Software>
      • Free Meta Tag Generator Software
  • JavaScripts and More Blog
  • Affiliates
    • Affiliate Marketing Program Software
    • Links Management
    • WWW Flash Templates
  • CSS Style Scripts
  • HTML Tutor
    • Dynamic HTML
    • HTML 5
    • HTML Codes Reference Chart
    • HTML Page With Left Navigation
    • HTML Special Characters
  • JavaScript
    • JavaScript 2>
      • JavaScript Toolbar
  • JavaScript Search Engine
  • Game Blog
  • Articles
  • Local SEO Forums
  • Link Exchange
    • Marketing Links>
      • Banner Marketing Links
      • Blog Marketing Links
      • Directory Marketing Links
      • Email Marketing Links
      • Link Marketing
      • Local Marketing Links
      • Search Engine Marketing Links
      • Social Marketing Links
      • Web Marketing Links
      • Website Submit Links
    • Web Development Links>
      • Flash Editor Links
      • Search Engine Optimization Links
      • Shopping Cart Links
      • Site Builder Links
      • Software Links
      • Tutorials Coding Links
      • Web Hosting Links