Sunday, June 18, 2017

I Will Customize Wordpress Theme And Plugin

                                                I Will Customize Wordpress Theme And Plugin

 more
Are you looking for a Theme customization in wordpress? then you are at the right place. 
I will do any kind of theme customization in wordpress.

In this gig. I will customize wordpress theme and setup your desired theme. Customized your theme as your requirement. 



I am offering following services:
■ Free/Premium WordPress Theme Customization;■ Premium Theme Installation.■ Custom css■ Logo Customization.■ Plugin Setup/configuration■ Favicon and Logo customization.■ Add Images,Improved or re-size Them Accordingly ■ Wordpress Plugin Customization.■ Create pages ■ Demo Setup■ Social Media Feed Integration■ categorization and upload■ Sidebar Modification
I can also redesign your existing wordpress website. So If you need this service please contact me and your all issues solved.

Please Contact me if you have any questions. 
Thank you 

Click For More 

Saturday, June 3, 2017

HTML Audio

The controls attribute adds audio controls, like play, pause, and volume.The <source> element allows you to specify alternative audio files which the browser may choose from. The browser will use the first recognized format.The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element.<!DOCTYPE html>

<html>                   

<body>

<audio controls>

<source src="horse.ogg" type="audio/ogg">

<source src="horse.mp3" type="audio/mpeg">

Your browser does not support the audio element.

</audio>

</body>


</html>

HTML Scripts

The <script> tag is used to define a client-side script (JavaScript).The <script> element either contains scripting statements, or it points to an external script file through the src attribute.Common uses for JavaScript are image manipulation, form validation, and dynamic changes of content.To select an HTML element, JavaScript very often use the document.getElementById(id) method.This JavaScript example writes "Hello JavaScript!" into an HTML element with id="demo":

<!DOCTYPE html>

<html>

<body>

<p id="demo"></p>

<script>

document.getElementById("demo").innerHTML = "Hello JavaScript!";

</script>

</body>


</html>

HTML Meta

Metadata is data (information) about data.The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.The metadata can be used by browsers (how to display content or reload page), search engines (keywords), or other web services.


<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<meta name="description" content="Free Web tutorials">

<meta name="keywords" content="HTML,CSS,XML,JavaScript">

<meta name="author" content="Hege Refsnes">

</head>

<body>

<p>All meta information goes in the head section...</p>

</body>


</html>

An HTML form with two input fields and one submit button:

<form action="demo_form.asp" method="get">

First name: <input type="text" name="fname"><br>
  
Last name: <input type="text" name="lname"><br>

<input type="submit" value="Submit">


</form>

Colspan and Rowspan Attributes

colspan attribute if you want to merge two or more columns into a single column. Similar way you will use rowspan if you want to merge two or more rows.The following HTML table will be displayed with borders around the table cells:

<!DOCTYPE html>

<html>

<head>

<title>HTML Table Colspan/Rowspan</title>

</head>

<body>

<table border="1">

<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>

<tr><td rowspan="2">Row 1 Cell 1</td><td>Row 1 Cell 2</td><td>Row 1 Cell 3</td></tr>
<tr><td>Row 2 Cell 2</td><td>Row 2 Cell 3</td></tr>
<tr><td colspan="3">Row 3 Cell 1</td></tr>

</table>

</body>


</html>

Learn HTML table

An HTML is defined with the <table> tag  Each table row is defined with the <tr> tag. A table header is defined with the <th> tag. By default, table headings are bold and centered. A table data/cell is defined with the <td> tag.The HTML <caption> tag is used for creating a caption for a table. There could be only one caption per table.
<!DOCTYPE html>

<html>

<head>

<title>HTML caption Tag</title>

</head>

<body>

<h2>Cricketers List</h2>

<table width="100%">

<caption>Indian Cricketers</caption>

<th>Name</th>
            <tr><td>mas</td></tr>
            <tr><td>sakib</td></tr>
            <tr><td>mustafiz</td></tr>
            <tr><td>tamim</td></tr>

</table>

</body>


</html>

HTML Links - Syntax

<!DOCTYPE html>

In HTML, links are defined with the <a> tag<html>

<body>

<p>< ahref="http://www.w3schools.com/html/">Visit our HTML tutorial</a></p>

</body>


</html>

Sunday, April 23, 2017

Html paragraphs

<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>

</html>

Html headings(h1-h6)

<!DOCTYPE html>
<html>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<p><b>Tip:</b> Use h1 to h6 elements only for headings. Do not use them just to make text bold or big. Use other tags for that.</p>
</body>

</html>