bestwebdesign

Freelancign web design and Graphics design

bestwebdesign

How to Make Money as a Freelance Designer

Notwithstanding the fabulous notoriety, independent plan is no stroll in the recreation center. It takes an amazing hard working attitude, critical entrepreneurial ability, and a tad of madness to pull it off adequately. This article will talk about how to successfully bring home the bacon as a consultant (architect or something else)

web design

Is there "huge cash" to be made as an independent creator?

He had never heard of a millionaire graphic designer who “drives a Ferrari and lives in a mansion.”

css

Is there "huge cash" to be made as an independent creator?

Freelance graphic design work seems like the best job in the world: you get to make your own schedule, work from home and choose which projects and clients you take on. All of that is true; however, becoming a freelance graphic designer isn’t as easy as it seems.

html

Graphic Design Concentration

Advertising Concepts Form and Space, including Advanced Layout Design Package Design Business of Graphic Design Publication Design Art Direction

php

Graphics design project

Visual computerization, otherwise called correspondence configuration, is the workmanship and routine with regards to arranging and anticipating thoughts and encounters with visual and literary substance.

Wednesday 29 November 2017

HTML Media


HTML Media


What is Multimedia?

Multimedia is the utilization of a computer to present and combine text, graphics, audio, and video with connections and apparatuses that let the client navigate, interact, create, and impart. This definition contains four parts basic to multimedia. To start with, there must be a computer to organize what you see and hear, and to interact with. Second, there must be joins that interface the data. Third, there must be navigational apparatuses that let you cross the web of associated data. At last, since multimedia isn't an onlooker don, there must be routes for you to accumulate, process, and convey your own particular data and thoughts. In the event that one of these parts is missing, you don't have multimedia. For instance, in the event that you have no computer to give interactivity, you have blended media, not multimedia. In the event that there are no connects to give a feeling of structure and measurement, you have a bookshelf, not multimedia. In the event that there are no navigational apparatuses to give you a chance to choose the game-plan, you have a film, not multimedia. On the off chance that you can't create and contribute your own particular thoughts, you have a TV, not multimedia. 

A vital objective of this course is to empower you to end up plainly a maker, not only a buyer, of multimedia on the Internet. In this multimedia segment of the Web Design entrance, along these lines, I will put assets asked for by understudies who are attempting to plan multimedia segments to fuse into their Web pages.

Browser Support

The primary web programs had bolster for text just, constrained to a solitary textual style in a solitary shading. 

Later came programs with help for hues and textual styles, and pictures! 

Audio, video, and movement have been dealt with distinctively by the significant programs. Diverse arrangements have been upheld, and a few configurations require additional partner programs (modules) to work. 

Ideally this will progress toward becoming history. HTML5 multimedia guarantees a simpler future for multimedia.

Multimedia Formats

Multimedia components (like audio or video) are put away in media documents. 

The most well-known approach to find the kind of a record, is to take a gander at the document augmentation. 

Multimedia documents have formats and diverse augmentations like: .swf, .wav, .mp3, .mp4, .mpg, .wmv, and .avi.

Basic Video Formats


Basic audio Formats














Share:

Monday 27 November 2017

HTML Google Maps

HTML Google Maps




Google Maps allows you to display maps on your web page:

Use ctrl + scroll to zoom the map
Map data ©2017 GeoBasis-DE/BKG (©2009), Google, Inst. Geogr. Nacional, Mapa GISrael, ORION-ME


Map
Satellite



A Basic Web Page

Example

<!DOCTYPE html>
<html>
<body>

<h1>My First Google Map</h1>

<div id="map">My map will go here</div>

</body>
<html>
Yourself Try

Set the Map Size

Set the size of the map:

Example

<div id="map" style="width:400px;height:400px">
Yourself Try

Create a Function to Set The Map Properties

Example

function myMap() {
    var mapOptions = {
        center: new google.maps.LatLng(51.5, -0.12),
        zoom: 10,
        mapTypeId: google.maps.MapTypeId.HYBRID
    }
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
}
Yourself Try

Add the Google Maps API

At last, demonstrate the guide on the page! 

The functionality of the guide is given by a JavaScript library situated at Google. Add a content to allude to the Google Maps API with a callback to the myMap function:

Example

<script src="https://maps.googleapis.com/maps/api/js?callback=myMap"></script>
Yourself Try

Share:

HTML5 SVG

HTML5 SVG


What is SVG?


SVG remains for Scalable Vector Graphics 

SVG is utilized to characterize designs for the Web 

SVG is a W3C proposal





The HTML <svg> Element


The HTML <svg> component is a compartment for SVG designs. 

SVG has a few strategies for drawing ways, boxes, circles, content, and realistic pictures.



Browser Support

The numbers in the table specify the first browser version that fully supports the <svg> element.



SVG Circle











Example

<!DOCTYPE html>
<html>
<body>

<svg width="100" height="100">
  <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>

</body>
</html>
Yourself Try

SVG Rectangle










Example

<svg width="400" height="100">
  <rect width="400" height="100" style="fill:rgb(0,0,255);stroke-width:10;stroke:rgb(0,0,0)"/>
</svg>
Yourself Try

SVG Rounded Rectangle











Example


<svg width="400" height="180">
  <rect x="50" y="20" rx="20" ry="20" width="150" height="150"
  style="fill:red;stroke:black;stroke-width:5;opacity:0.5" /
>

</svg>
Yourself Try

SVG Star














Example

<svg width="300" height="200">
  <polygon points="100,10 40,198 190,78 10,78 160,198"
  style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;" /
>

</svg>
Yourself Try

SVG Logo








Example

<svg height="130" width="500">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
    </linearGradient>
  </defs>
  <ellipse cx="100" cy="70" rx="85" ry="55" fill="url(#grad1)" />
  <text fill="#ffffff" font-size="45" font-family="Verdana" x="50" y="86">SVG</text>
  Sorry, your browser does not support inline SVG.
</svg>
Yourself Try
Share:

HTML Canvas

HTML5 Canvas



What is HTML Canvas?

The HTML <canvas> component is utilized to draw designs, on the fly, by means of JavaScript. 

The <canvas> component is just a holder for illustrations. You should utilize JavaScript to really draw the illustrations. 

Canvas has a few strategies for drawing ways, boxes, circles, message, and including pictures.

Canvas Examples


Here is an example of a basic, empty canvas:

Example

<canvas id="myCanvas" width="200" height="100" style="border:1px solid #000000;">
</canvas>
Yourself Try

Draw a Line








Example

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.moveTo(0,0);
ctx.lineTo(200,100);
ctx.stroke();
Yourself Try

Draw a Circle








Example

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.arc(95,50,40,0,2*Math.PI);
ctx.stroke();
Yourself Try

Draw a Text








Example

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.font = "30px Arial";
ctx.fillText("Hello World",10,50);
Yourself Try

Stroke Text








Example

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.font = "30px Arial";
ctx.strokeText("Hello World",10,50);
Yourself Try

Draw Linear Gradient








Example

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");

// Create gradientvar grd = ctx.createLinearGradient(0,0,200,0);
grd.addColorStop(0,"red");
grd.addColorStop(1,"white");

// Fill with gradientctx.fillStyle = grd;
ctx.fillRect(10,10,150,80);
Yourself Try

Draw Circular Gradient









Example

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");

// Create gradientvar grd = ctx.createRadialGradient(75,50,5,90,60,100);
grd.addColorStop(0,"red");
grd.addColorStop(1,"white");

// Fill with gradientctx.fillStyle = grd;
ctx.fillRect(10,10,150,80);
Yourself Try


Share:

Web Design Tutorial

Theme Support

Munere veritus fierent cu sed, congue altera mea te, ex clita eripuit evertitur duo. Legendos tractatos honestatis ad mel. Legendos tractatos honestatis ad mel. , click here →