SlideShare una empresa de Scribd logo
1 de 12
Sacramento web design : Part I


Creating Your Own Web Page is Easy - A Tutorial (Part 3)

Here's the last part of this tutorial. Our topics are:



Linking other pages and other websites

Using CSS in styling your web pages



Let's begin here.



<h1>Creating and placing hyperlinks</h1>



It is very important to create and place hyperlinks in your website to help your visitors navigate your site
from pages to pages. These are the links displayed in your web pages that will change the web page
displayed when clicked by visitors. These must be prominent and properly placed in your pages. If not,
your visitors will be confused and will eventually leave your site unhappy or unsatisfied. Hence, he may
never return. So, make sure that your hyperlinks are prominent, descriptive and orderly placed in your
pages.



<b>Linking your pages</b>



In page 1, you have to place the following code where you want the visitor to click to go to your page 2:



&lt;a href="http://your-domain-name.com/page-2-name" title="description using relevant sacramento
web designs"&gt;your link description&lt;/a&gt;



Looking at the codes, "a" is html anchor tag used for hyperlinks, "href" is the attribute referring to the
URL of the destination page and "title" refers to the description of your link. If possible, use relevant
sacramento web designs in your description for search engine optimization.
Now, type the above in your mywebpage.html and replace the domain name, web page name, title and
link description with yours. Use relevant sacramento web designs in your link description for search
engine optimization. Then, save and refresh your browser to show you how the above is displayed on
the web.



To see more, hover or place your cursor on the link. The "title" value will be displayed on the link while
the "href" value or URL of the destination page will be shown at the left side of the bottom bar of
browser window. It may work only if you are online and your site is already active on the web.



<b>Linking to other websites</b>



You have to place the following code in your website pages where you want your visitors to click to go to
other particular websites:



&lt;a href="http://other-site-domain-name.com/page-name" title="description using relevant
sacramento web designs" target="_blank"&gt;your link description&lt;/a&gt;



If you notice, it is the same as linking your web pages but it is pointing to other website. So, we added
the "target" attribute with value of "_blank" to open the destination page into new browser window.
This will make your site remain active or open even if your visitors click the link to other website.



To try it, type the above in your mywebpage.html and replace the domain name, web page name and
link description with yours. Use relevant sacramento web designs in your link description for search
engine optimization. Then, save and refresh your browser to how the above is displayed on the web.
Click the link and a new browser window will open while the page where you clicked the link remained
open.



<b>Hyperlinks with images</b>
You may use images in your hyperlinks. In this case, the visitors can click an image in your web pages
with links that will send them to other pages in your site or to other websites you have linked to. See the
example below:



<b>Linking to your other web pages</b>



&lt;a href="http://your-domain-name.com/other-page-name&gt;&lt;img src="http://your-domain-
name.com/image-directory/image-file" alt="your-image-description with relevant sacramento web
designs" height="???" width="???" border="0"&lt;/a&gt;



<b>Linking to other websites</b>



&lt;a href="http://other-site-domain-name.com/page-name&gt;&lt;img src="http://your-domain-
name.com/image-directory/image-file" alt="your image description with relevant sacramento web
designs" height="???" width="???" border="0"&lt;/a&gt;



If you notice, it is just like you are inserting an image to your web page. The only difference, it is placed
between the anchor tags &lt;a href="URL"&gt;&lt;/a&gt;. So, in place of link description, you use image.
When your visitors click the image, the page will change to the destination page.



To try the above, place the image that you want to be used with hyperlinks in the same directory where
your mywebpage.html is located. Then, type the above codes in your mywebpage.html but type only the
image filename in the "src" value. Then, save and refresh the browser to effect the changes. Hover or
place your cursor on the image. The "alt" value or the image description will be displayed on the image
while the "href" value or URL of the destination page will be shown at the left side of the bottom bar of
browser window.



<h1>Styling your web page using CSS</h1>
W3C.org requires the website style definitions must be placed in the style sheets or CSS. Styles are used
to manipulate the design of the website such font sizes, colors, font face, box properties, table
properties, paragraph format, etc.



Placing your styles within the head or in a separate CSS file let you control the style of your web pages in
just one page. Now, I will tell you the easy way to create your style sheets within the head tags and how
it is implemented in the within the body tags.



To define a style, you have to use a selector as a reference. Basic selectors are body, div, span, li, table,
td and p. div is used for group of paragraphs, p is for one paragraph, span is for selected characters,
words or phrases, li is for lists, table is for table and td is for table data. The good thing here is you can
make your own selectors using names you prefer.



Creating style sheets is the same as what we have done in CSS boxes. Whatever style properties you
assigned to those selecters, it will affect area or content of your web pages where you have used the
corresponding selectors. See example below:



&lt;style type="text/css"&gt;

body {

 margin: 10%;

 color: #00f;

 background: #ff0;

 text-align: center;

 }



&lt;/style&gt;



In the above style, all your contents within the body tags (&lt;body&gt; and &lt;/body&gt;) will have the
above style properties. Try it by typing the above in your mywebpage.html within the head tags. Save it
and refresh your browser and see effect in your web page.
Let's see another example:



&lt;style type="text/css"&gt;

p{

 margin: 20px;

 color: #cff;

 background: #ccc;

 text-align: right;

 }



&lt;/style&gt;



All of your content that you have placed within &lt;p&gt; and &lt;/p&gt; will have the above style
properties. Now, type the above to your mywebpage.html within the head tags, save and refresh your
browser and see the results.



Now, let's make our own selectors. As explained in creating CSS boxes, we can make an id and a class
selectors and implement as follows:



&lt;style type="text/css"&gt;

#ownidselector {

 margin: 0px;

 text-decoration: underline;

 background: cff;

 }
.ownclassselector {

 margin: 10px;

 font-size: 16px;

 font-style: italic;

 color: #f00;

 }



.ownclassselector2 {

 font-weight: bold;

 font-family: courier;

 border: 1px dashed #cff;

 }



&lt;/style&gt;



&lt;body&gt;



&lt;div id="ownidselector"&gt;This is an example of using the id selector&lt;/div&gt;



&lt;div class="ownclassselector"&gt;This is an example of using the class selector&lt;/div&gt;



&lt;div id="ownidselector" class="ownclassselector"&gt;This is an example of using both the id and class
selectors&lt;/div&gt;



&lt;span id="ownidselector"&gt;This is an example&lt;/span&gt; of using span with id selector and
&lt;span class="ownclassselector"&gt;class selector&lt;/span&gt;
This is an example of using &lt;span id="ownidselector" class="ownclassselector"&gt;both the id and
class selectors&lt;/span&gt;



This is an example of using &lt;span class="ownclassselector ownclassselector2"&gt;the two class
selectors at the same time&lt;/span&gt;



&lt;/body&gt;



Let's me explain to you the above style properties that are not discussed in Creating CSS Boxes:



text-decoration: underline - creates underline to the text or characters. You may use "none" instead of
"underline" to remove the underline.



font-size: 16px - fixes the size of the font within the affected selector. You may use px, em, pt and % as
unit of measure.



font-style: italic - makes the text or characters italic. You may also use normal, oblique.



color: #f00 - defines the color of the text or characters. You may use different web colors here. It is
advisable to use web-safe colors as other computers or browsers could not display other colors.



font-weight: bold - makes the text or characters bold. You may use also normal, bolder, lighter, 100 up
to 900.



font-family: courier - defines the font type of the text or characters. Common font types are arial,
verdana and helvetica.
Type the above codes to your mywebpage.html within the style and body tags as noted, then save and
refresh your browser to see the effects of the above style properties. You may change the values, then
save and refresh to familiarize yourself with styling properties.



For complete web-safe color codes and complete list of style properties, simply visit my site.



When you have already familiarized yourself with the html and CSS codes, it will be easy for you to
create a web page.



I hope you've learned something in this tutorial. Just continue practicing and learning. Research,
research, research. There so many free tutorials here on the web.



To learn more of HTML and CSS, search Google by typing "html tutorial" or "css tutorial" - Click Search
and you will find many choices. For standards, you may visit www.W3C.org.



Hiring a web designer to come up with the custom solution that you need can set you back a few
thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere
pennies with a tool like Breezy Websites. See http://breezywebsites.com for details!


Sacramento web design : End of Part I




Creditable Graphic Design

With the artistic skillful hands of graphic designers you can merely achieve the kind of design that you
want for your projects. Graphic design had been noted to be an exemplary feature that makes any
material more good-looking and appealing. On the other hand businesses make use of them in
developing attractive promotional tools.



Graphic Design Application
Mainly graphic design is not only applicable for printed materials they can also be applied and utilized
for web development projects. The vast changes made in technology had paved more businesses to
have their services extended online. However bringing up a web page of your own is not as easy as
selling hot potatoes. You have to be creative and wise enough in choosing for the right designs and a
right content for a perfect presentation.



Getting started with the designs that you want for your project graphic design San Diego can help you
out to deliver an effective design performance. This graphic design company crafts an efficient design
workflow of professionalism and accuracy.



Web development companies had simply aided to create a good marketing strategy that had resulted to
have:

1.      Good branding image – a good image is vital in promoting your companies and services. It would
also support to market your service efficiently.



2.      Visitor friendly site – it simply pertains in gaining more customers and turning them out to be
potential customers and ending up with more sales and profit.



Essentially graphic designs are vital in every material made. Let’s say you wanted to make a design that
will stand out. Creating a logo for instance, if you want them to be more attractive, appealing and
colorful you have to rightfully choose for the right company suited for your job.



Urging to have a prompt response from your graphic design companies’ graphic design San Diego would
more likely to answer immediately customer’s questions. Similarly, providing an abrupt response would
impinge on the way customers look at your company.



With the many services that are sprouting at present more businesses are aiming to deal with right
company. Achieving to have the right company on hand graphic design San Diego professional designer
will develop an idea and end it up with a remarkable design.



Sequentially a well designed web site, web page or promotional material can be a key for a more
successful business.
Hiring a web designer to come up with the custom solution that you need can set you back a few
thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere
pennies with a tool like Breezy Websites. See http://breezywebsites.com for details!


Sacramento web design : End of Part II




Critical Web Design Rules

Content is King! If you want a website to generate back-links and have quality content the search
engines love, be sure to make it readable by both people and search engines. Search engines are
working to give people quality results. Thus, they are looking for sites with quality content. So by
building site content for people, not only are you getting back to basics (information dissemination to
people via the Internet), you are creating a site search engines will love. So, build sites for people and
the search engines will come.



When creating a new website or redesigning an existing site, there are four critical rules which should be
followed to make the site effective, functional, loved by search engines - and successful.



<b><u>Easy to Read</u></b>



When building a website, the first thing you need to be sure of is that your website is easy to read.
When you write content, remember that most web site visitors don’t read every word of a page - in fact,
they only scan pages to find what they want.



<b>Break up Your Content</b>

Break up your pages and use headers between major ideas so people scanning your site can find what
they want quickly. Use meaningful headers between each paragraph or major idea this helps with SEO.
Headers should be created with the H1 through H4 tags for SEO. Always use good writing structure.
Additionally, avoid long paragraphs that run on. You should break up any long paragraphs.
Color and Fonts</b>

<b>To help readability, use high contrast colors between font and background. Black text against a
white background may seem stark, but it is very readable. To make a website easy on the eyes, try an
off-white background and a dark gray (almost black) text color.



<b>Things to avoid with content color:</b>

<li>Avoid vibrant background colors like purple or yellow. Such back colors make text difficult to
read.</li>

<li>Avoid using an image behind your text.</li>

<li>Avoid using bright text colors on bright backgrounds.</li>



<b>Standard Compliant Browser for Development</b>

When developing and testing your site, use a Standards compliant browser like FireFox. If you develop
your site to be standards compliant, it will work in most browsers, including MS Internet Explorer (IE). It
is recommended that you test your site using the latest and last browser versions of IE (IE6 and IE7). To
run multiple versions of IE on the same machine, TredoSoft.com has a free installer that will install
multiple versions of IE. It works great!



<b>Sacramento web designs in Content</b>

Of course, when writing content, not only should it be formatted to be readable, but it must also be
consumable by not only people, but by search engines. One way to make the subject of the content
known to search engines is to use the sacramento web designs that people use to search for your site in
your content. Be sure to use sacramento web designs in your header tags, your first paragraph and
throughout your text. The sacramento web design density should be between 4% and 7% - but any more
than that could 1) be hard to read and still make sense and 2) be considered spam by search engines
and banned. Sacramento web designs should also be used in your TITLE tags and your Meta description.



Hiring a web designer to come up with the custom solution that you need can set you back a few
thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere
pennies with a tool like Breezy Websites. See http://breezywebsites.com for details!
Sacramento web design : End of Part III

Más contenido relacionado

La actualidad más candente

Website-prototype-assignment
Website-prototype-assignmentWebsite-prototype-assignment
Website-prototype-assignment
Kate Godinho
 
Basics Of Css And Some Common Mistakes
Basics Of Css And Some Common MistakesBasics Of Css And Some Common Mistakes
Basics Of Css And Some Common Mistakes
sanjay2211
 
Task 1 - Conventions of a portfolio website
Task 1 - Conventions of a portfolio websiteTask 1 - Conventions of a portfolio website
Task 1 - Conventions of a portfolio website
L15338
 
Web authoring, assignment 1
Web authoring, assignment 1Web authoring, assignment 1
Web authoring, assignment 1
haverstockmedia
 
Class 1 handout (2) html exercises
Class 1 handout (2) html exercisesClass 1 handout (2) html exercises
Class 1 handout (2) html exercises
Erin M. Kidwell
 
CSS Basic and Common Errors
CSS Basic and Common ErrorsCSS Basic and Common Errors
CSS Basic and Common Errors
Hock Leng PUAH
 
HTML Intermediate
HTML IntermediateHTML Intermediate
HTML Intermediate
c525600
 

La actualidad más candente (19)

Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
 
Website-prototype-assignment
Website-prototype-assignmentWebsite-prototype-assignment
Website-prototype-assignment
 
Basics Of Css And Some Common Mistakes
Basics Of Css And Some Common MistakesBasics Of Css And Some Common Mistakes
Basics Of Css And Some Common Mistakes
 
Website Optimization -SEO - Step By Step
Website Optimization -SEO - Step By StepWebsite Optimization -SEO - Step By Step
Website Optimization -SEO - Step By Step
 
Task 1 - Conventions of a portfolio website
Task 1 - Conventions of a portfolio websiteTask 1 - Conventions of a portfolio website
Task 1 - Conventions of a portfolio website
 
Web authoring, assignment 1
Web authoring, assignment 1Web authoring, assignment 1
Web authoring, assignment 1
 
Class 1 handout (2) html exercises
Class 1 handout (2) html exercisesClass 1 handout (2) html exercises
Class 1 handout (2) html exercises
 
Seo guide & tips for web designers
Seo guide & tips for web designersSeo guide & tips for web designers
Seo guide & tips for web designers
 
CSS Basic and Common Errors
CSS Basic and Common ErrorsCSS Basic and Common Errors
CSS Basic and Common Errors
 
Search Engine Optimization Strategy & Consulting
Search Engine Optimization Strategy & ConsultingSearch Engine Optimization Strategy & Consulting
Search Engine Optimization Strategy & Consulting
 
Www snapdeal com-report
Www snapdeal com-reportWww snapdeal com-report
Www snapdeal com-report
 
Project 03 Creating Web Pages with Links, Images, and Formatted Text
Project 03 Creating Web Pages with Links, Images, and Formatted TextProject 03 Creating Web Pages with Links, Images, and Formatted Text
Project 03 Creating Web Pages with Links, Images, and Formatted Text
 
Sourcer\'s Daily Dozen for ERE- Arbita JobMachine
Sourcer\'s Daily Dozen for ERE- Arbita JobMachineSourcer\'s Daily Dozen for ERE- Arbita JobMachine
Sourcer\'s Daily Dozen for ERE- Arbita JobMachine
 
Process for Online Visibility: From Information Architecture to Killer Content
Process for Online Visibility: From Information Architecture to Killer ContentProcess for Online Visibility: From Information Architecture to Killer Content
Process for Online Visibility: From Information Architecture to Killer Content
 
Your own online_magazine
Your own online_magazineYour own online_magazine
Your own online_magazine
 
Open Graph Protocol
Open Graph ProtocolOpen Graph Protocol
Open Graph Protocol
 
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTREWeb Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
 
Www amazon com-report
Www amazon com-reportWww amazon com-report
Www amazon com-report
 
HTML Intermediate
HTML IntermediateHTML Intermediate
HTML Intermediate
 

Similar a Sacramento web design

Liquidlayout
LiquidlayoutLiquidlayout
Liquidlayout
sammt
 
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
Ismaciil2
 
Online strategy for expatholidays.com
Online strategy for expatholidays.comOnline strategy for expatholidays.com
Online strategy for expatholidays.com
Prince Bertrand
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 

Similar a Sacramento web design (20)

Make Css easy(part:2) : easy tips for css(part:2)
Make Css easy(part:2) : easy tips for css(part:2)Make Css easy(part:2) : easy tips for css(part:2)
Make Css easy(part:2) : easy tips for css(part:2)
 
Liquidlayout
LiquidlayoutLiquidlayout
Liquidlayout
 
HTML5 - create hyperlinks and anchors
HTML5 - create hyperlinks and anchorsHTML5 - create hyperlinks and anchors
HTML5 - create hyperlinks and anchors
 
css-tutorial
css-tutorialcss-tutorial
css-tutorial
 
css-tutorial
css-tutorialcss-tutorial
css-tutorial
 
Lesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdfLesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdf
 
Introduction to css by programmerblog.net
Introduction to css by programmerblog.netIntroduction to css by programmerblog.net
Introduction to css by programmerblog.net
 
Css
CssCss
Css
 
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
 
css1.ppt
css1.pptcss1.ppt
css1.ppt
 
html-css
html-csshtml-css
html-css
 
David Weliver
David WeliverDavid Weliver
David Weliver
 
ARTICULOENINGLES
ARTICULOENINGLESARTICULOENINGLES
ARTICULOENINGLES
 
Css
CssCss
Css
 
Introduction to css
Introduction to cssIntroduction to css
Introduction to css
 
Web Typography
Web TypographyWeb Typography
Web Typography
 
Customizing Your WordPress Theme Using Firebug and Basic CSS
Customizing Your WordPress Theme Using Firebug and Basic CSSCustomizing Your WordPress Theme Using Firebug and Basic CSS
Customizing Your WordPress Theme Using Firebug and Basic CSS
 
Html links
Html linksHtml links
Html links
 
Online strategy for expatholidays.com
Online strategy for expatholidays.comOnline strategy for expatholidays.com
Online strategy for expatholidays.com
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 

Último

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

Sacramento web design

  • 1. Sacramento web design : Part I Creating Your Own Web Page is Easy - A Tutorial (Part 3) Here's the last part of this tutorial. Our topics are: Linking other pages and other websites Using CSS in styling your web pages Let's begin here. <h1>Creating and placing hyperlinks</h1> It is very important to create and place hyperlinks in your website to help your visitors navigate your site from pages to pages. These are the links displayed in your web pages that will change the web page displayed when clicked by visitors. These must be prominent and properly placed in your pages. If not, your visitors will be confused and will eventually leave your site unhappy or unsatisfied. Hence, he may never return. So, make sure that your hyperlinks are prominent, descriptive and orderly placed in your pages. <b>Linking your pages</b> In page 1, you have to place the following code where you want the visitor to click to go to your page 2: &lt;a href="http://your-domain-name.com/page-2-name" title="description using relevant sacramento web designs"&gt;your link description&lt;/a&gt; Looking at the codes, "a" is html anchor tag used for hyperlinks, "href" is the attribute referring to the URL of the destination page and "title" refers to the description of your link. If possible, use relevant sacramento web designs in your description for search engine optimization.
  • 2. Now, type the above in your mywebpage.html and replace the domain name, web page name, title and link description with yours. Use relevant sacramento web designs in your link description for search engine optimization. Then, save and refresh your browser to show you how the above is displayed on the web. To see more, hover or place your cursor on the link. The "title" value will be displayed on the link while the "href" value or URL of the destination page will be shown at the left side of the bottom bar of browser window. It may work only if you are online and your site is already active on the web. <b>Linking to other websites</b> You have to place the following code in your website pages where you want your visitors to click to go to other particular websites: &lt;a href="http://other-site-domain-name.com/page-name" title="description using relevant sacramento web designs" target="_blank"&gt;your link description&lt;/a&gt; If you notice, it is the same as linking your web pages but it is pointing to other website. So, we added the "target" attribute with value of "_blank" to open the destination page into new browser window. This will make your site remain active or open even if your visitors click the link to other website. To try it, type the above in your mywebpage.html and replace the domain name, web page name and link description with yours. Use relevant sacramento web designs in your link description for search engine optimization. Then, save and refresh your browser to how the above is displayed on the web. Click the link and a new browser window will open while the page where you clicked the link remained open. <b>Hyperlinks with images</b>
  • 3. You may use images in your hyperlinks. In this case, the visitors can click an image in your web pages with links that will send them to other pages in your site or to other websites you have linked to. See the example below: <b>Linking to your other web pages</b> &lt;a href="http://your-domain-name.com/other-page-name&gt;&lt;img src="http://your-domain- name.com/image-directory/image-file" alt="your-image-description with relevant sacramento web designs" height="???" width="???" border="0"&lt;/a&gt; <b>Linking to other websites</b> &lt;a href="http://other-site-domain-name.com/page-name&gt;&lt;img src="http://your-domain- name.com/image-directory/image-file" alt="your image description with relevant sacramento web designs" height="???" width="???" border="0"&lt;/a&gt; If you notice, it is just like you are inserting an image to your web page. The only difference, it is placed between the anchor tags &lt;a href="URL"&gt;&lt;/a&gt;. So, in place of link description, you use image. When your visitors click the image, the page will change to the destination page. To try the above, place the image that you want to be used with hyperlinks in the same directory where your mywebpage.html is located. Then, type the above codes in your mywebpage.html but type only the image filename in the "src" value. Then, save and refresh the browser to effect the changes. Hover or place your cursor on the image. The "alt" value or the image description will be displayed on the image while the "href" value or URL of the destination page will be shown at the left side of the bottom bar of browser window. <h1>Styling your web page using CSS</h1>
  • 4. W3C.org requires the website style definitions must be placed in the style sheets or CSS. Styles are used to manipulate the design of the website such font sizes, colors, font face, box properties, table properties, paragraph format, etc. Placing your styles within the head or in a separate CSS file let you control the style of your web pages in just one page. Now, I will tell you the easy way to create your style sheets within the head tags and how it is implemented in the within the body tags. To define a style, you have to use a selector as a reference. Basic selectors are body, div, span, li, table, td and p. div is used for group of paragraphs, p is for one paragraph, span is for selected characters, words or phrases, li is for lists, table is for table and td is for table data. The good thing here is you can make your own selectors using names you prefer. Creating style sheets is the same as what we have done in CSS boxes. Whatever style properties you assigned to those selecters, it will affect area or content of your web pages where you have used the corresponding selectors. See example below: &lt;style type="text/css"&gt; body { margin: 10%; color: #00f; background: #ff0; text-align: center; } &lt;/style&gt; In the above style, all your contents within the body tags (&lt;body&gt; and &lt;/body&gt;) will have the above style properties. Try it by typing the above in your mywebpage.html within the head tags. Save it and refresh your browser and see effect in your web page.
  • 5. Let's see another example: &lt;style type="text/css"&gt; p{ margin: 20px; color: #cff; background: #ccc; text-align: right; } &lt;/style&gt; All of your content that you have placed within &lt;p&gt; and &lt;/p&gt; will have the above style properties. Now, type the above to your mywebpage.html within the head tags, save and refresh your browser and see the results. Now, let's make our own selectors. As explained in creating CSS boxes, we can make an id and a class selectors and implement as follows: &lt;style type="text/css"&gt; #ownidselector { margin: 0px; text-decoration: underline; background: cff; }
  • 6. .ownclassselector { margin: 10px; font-size: 16px; font-style: italic; color: #f00; } .ownclassselector2 { font-weight: bold; font-family: courier; border: 1px dashed #cff; } &lt;/style&gt; &lt;body&gt; &lt;div id="ownidselector"&gt;This is an example of using the id selector&lt;/div&gt; &lt;div class="ownclassselector"&gt;This is an example of using the class selector&lt;/div&gt; &lt;div id="ownidselector" class="ownclassselector"&gt;This is an example of using both the id and class selectors&lt;/div&gt; &lt;span id="ownidselector"&gt;This is an example&lt;/span&gt; of using span with id selector and &lt;span class="ownclassselector"&gt;class selector&lt;/span&gt;
  • 7. This is an example of using &lt;span id="ownidselector" class="ownclassselector"&gt;both the id and class selectors&lt;/span&gt; This is an example of using &lt;span class="ownclassselector ownclassselector2"&gt;the two class selectors at the same time&lt;/span&gt; &lt;/body&gt; Let's me explain to you the above style properties that are not discussed in Creating CSS Boxes: text-decoration: underline - creates underline to the text or characters. You may use "none" instead of "underline" to remove the underline. font-size: 16px - fixes the size of the font within the affected selector. You may use px, em, pt and % as unit of measure. font-style: italic - makes the text or characters italic. You may also use normal, oblique. color: #f00 - defines the color of the text or characters. You may use different web colors here. It is advisable to use web-safe colors as other computers or browsers could not display other colors. font-weight: bold - makes the text or characters bold. You may use also normal, bolder, lighter, 100 up to 900. font-family: courier - defines the font type of the text or characters. Common font types are arial, verdana and helvetica.
  • 8. Type the above codes to your mywebpage.html within the style and body tags as noted, then save and refresh your browser to see the effects of the above style properties. You may change the values, then save and refresh to familiarize yourself with styling properties. For complete web-safe color codes and complete list of style properties, simply visit my site. When you have already familiarized yourself with the html and CSS codes, it will be easy for you to create a web page. I hope you've learned something in this tutorial. Just continue practicing and learning. Research, research, research. There so many free tutorials here on the web. To learn more of HTML and CSS, search Google by typing "html tutorial" or "css tutorial" - Click Search and you will find many choices. For standards, you may visit www.W3C.org. Hiring a web designer to come up with the custom solution that you need can set you back a few thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere pennies with a tool like Breezy Websites. See http://breezywebsites.com for details! Sacramento web design : End of Part I Creditable Graphic Design With the artistic skillful hands of graphic designers you can merely achieve the kind of design that you want for your projects. Graphic design had been noted to be an exemplary feature that makes any material more good-looking and appealing. On the other hand businesses make use of them in developing attractive promotional tools. Graphic Design Application
  • 9. Mainly graphic design is not only applicable for printed materials they can also be applied and utilized for web development projects. The vast changes made in technology had paved more businesses to have their services extended online. However bringing up a web page of your own is not as easy as selling hot potatoes. You have to be creative and wise enough in choosing for the right designs and a right content for a perfect presentation. Getting started with the designs that you want for your project graphic design San Diego can help you out to deliver an effective design performance. This graphic design company crafts an efficient design workflow of professionalism and accuracy. Web development companies had simply aided to create a good marketing strategy that had resulted to have: 1. Good branding image – a good image is vital in promoting your companies and services. It would also support to market your service efficiently. 2. Visitor friendly site – it simply pertains in gaining more customers and turning them out to be potential customers and ending up with more sales and profit. Essentially graphic designs are vital in every material made. Let’s say you wanted to make a design that will stand out. Creating a logo for instance, if you want them to be more attractive, appealing and colorful you have to rightfully choose for the right company suited for your job. Urging to have a prompt response from your graphic design companies’ graphic design San Diego would more likely to answer immediately customer’s questions. Similarly, providing an abrupt response would impinge on the way customers look at your company. With the many services that are sprouting at present more businesses are aiming to deal with right company. Achieving to have the right company on hand graphic design San Diego professional designer will develop an idea and end it up with a remarkable design. Sequentially a well designed web site, web page or promotional material can be a key for a more successful business.
  • 10. Hiring a web designer to come up with the custom solution that you need can set you back a few thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere pennies with a tool like Breezy Websites. See http://breezywebsites.com for details! Sacramento web design : End of Part II Critical Web Design Rules Content is King! If you want a website to generate back-links and have quality content the search engines love, be sure to make it readable by both people and search engines. Search engines are working to give people quality results. Thus, they are looking for sites with quality content. So by building site content for people, not only are you getting back to basics (information dissemination to people via the Internet), you are creating a site search engines will love. So, build sites for people and the search engines will come. When creating a new website or redesigning an existing site, there are four critical rules which should be followed to make the site effective, functional, loved by search engines - and successful. <b><u>Easy to Read</u></b> When building a website, the first thing you need to be sure of is that your website is easy to read. When you write content, remember that most web site visitors don’t read every word of a page - in fact, they only scan pages to find what they want. <b>Break up Your Content</b> Break up your pages and use headers between major ideas so people scanning your site can find what they want quickly. Use meaningful headers between each paragraph or major idea this helps with SEO. Headers should be created with the H1 through H4 tags for SEO. Always use good writing structure. Additionally, avoid long paragraphs that run on. You should break up any long paragraphs.
  • 11. Color and Fonts</b> <b>To help readability, use high contrast colors between font and background. Black text against a white background may seem stark, but it is very readable. To make a website easy on the eyes, try an off-white background and a dark gray (almost black) text color. <b>Things to avoid with content color:</b> <li>Avoid vibrant background colors like purple or yellow. Such back colors make text difficult to read.</li> <li>Avoid using an image behind your text.</li> <li>Avoid using bright text colors on bright backgrounds.</li> <b>Standard Compliant Browser for Development</b> When developing and testing your site, use a Standards compliant browser like FireFox. If you develop your site to be standards compliant, it will work in most browsers, including MS Internet Explorer (IE). It is recommended that you test your site using the latest and last browser versions of IE (IE6 and IE7). To run multiple versions of IE on the same machine, TredoSoft.com has a free installer that will install multiple versions of IE. It works great! <b>Sacramento web designs in Content</b> Of course, when writing content, not only should it be formatted to be readable, but it must also be consumable by not only people, but by search engines. One way to make the subject of the content known to search engines is to use the sacramento web designs that people use to search for your site in your content. Be sure to use sacramento web designs in your header tags, your first paragraph and throughout your text. The sacramento web design density should be between 4% and 7% - but any more than that could 1) be hard to read and still make sense and 2) be considered spam by search engines and banned. Sacramento web designs should also be used in your TITLE tags and your Meta description. Hiring a web designer to come up with the custom solution that you need can set you back a few thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere pennies with a tool like Breezy Websites. See http://breezywebsites.com for details!
  • 12. Sacramento web design : End of Part III