Skip to main content

Posts

Showing posts with the label Web Design

Which HTML Element helps to SEO Score up viewing result without boost by search engines

Here we discuss SEO and SEO friendly tags in HTML Add caption Meta tags: <meta charset="UTF-8"> <meta name="description" content="Here you can write your website descripsions"> <meta name="keywords" content="here you can write your description and all tahte sapareted by comma like (key1, key2, kay3)"> <meta name="author" content="Here you write website's authers name"> Headline tag: <h1>Headline tag 1</h1> <h2>Headline tag 1</h2> <h3>Headline tag 1</h3> This tag is most importent tag in website for SEO. Use H1 tag in wevery page of your website. its helps to identify content  Attribute : ALT This attribute used to find image form search engine. in this tag, you have to use for your website and type the title of the image. like  <img src="address.jpg" alt="title of your image">   TITLE This attribut...

Website language translator for website plugin

Google language translator This is a very big problem. but now you have easy and fixed solutions. just few click it will possible with the help of google language translator. Step 1: Click this link:   Make your website instantly available in 100+ languages   Step 2:  Put your website URL like "xyz.com" and choose your website's original content written a language. Step 3: Let's Configure your Language changer style. then get  the code Now Copy and paste the code into your website where you want to show the translator option. thank you

How to use custom font in website

Use custom font in your website help of @font-face rule First: you need some font file like - .woff, .ttf etc  Second: download your font using this sites  1001 Free Fonts - Download Fonts 1001 Fonts · Free Fonts Baby! After downloading that create a folder on your root folder by named font and past it. then  @font-face {     font-family: myFont;     src: url(fontname.ttf); } it helps you to create a custom font family name. now your site is ready to use this h1{     font-family: myFont; }

How to create a dynamic digital clock for your website using javascript

Dynamic Digital Clock Time : Day : Click to see the clock Just copy and past on your website Source :  <!DOCTYPE html> <html> <head> <script> function startTime() {     var today = new Date();     var h = today.getHours();     var m = today.getMinutes();     var s = today.getSeconds();     m = checkTime(m);     s = checkTime(s);     document.getElementById('clock').innerHTML =     h + ":" + m + ":" + s;     var t = setTimeout(startTime, 500); var today = new Date();     var day = today.getDate();     var month = today.getMonth();     var year = today.getFullYear();       document.getElementById('day').innerHTML =     day + "/" + month + "/" + year;     var d = setTimeout(startTime, 500); } function checkTime(i) {     if (i < 10) {i =...

How to use marquee tag in website

Marquee <marquee> use for scrolling object in web browser In The HTML  element is <marquee>  used to scrolling area of text, Images, and others. You can control scrolling behavior or direction also in a simple way just added some attributes. This is Default Marquee Scroll Marquee Attributes : Behavior :  mentioned how the objects is scrolling with the help of marquee tag. in this attribute you can use this mentioned value =" ( scroll, slide and alternate ) ". If no value  mentioned is  specified, the default value is scroll. Marquee Behavior Scroll Marquee Behavior Slide Marquee Behavior Alternate bgcolor: You can  s ets the marquee tag area background color with the help of color name or hexadecimal value or RGB format. Marquee bgcolor pink with default behavior scroll <marquee bgcolor="pink">Marquee bgcolor pink with default behavior scroll</marquee...

Basic Structure of HMTL5

Basic Structure of HMTL5 <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </head> <body> </body> </html> Saving Process of HTML file : CTRL+S or go to file menu and click to save and put a file name and with the file name you must type .html and click the save