Skip to main content

Easy to Learn HTML

suhailusama.com


nasa creation 

contact us : suhaillbk2000@gmail.com
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML

The language for building web pages
LEARN HTML HTML REFERENCE

HTML Example:

<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it Yourself »

CSS Example:

body {
    background-color: lightblue;
}
h1 {
    color: white;
    text-align: center;
}
{
    font-family: verdana;
    font-size: 20px;
}
Try it Yourself »

CSS

The language for styling web pages
LEARN CSS CSS REFERENCE

JavaScript

The language for programming web pages
LEARN JAVASCRIPT JAVASCRIPT REFERENCE

JavaScript Example:

<script>
function myFunction() {
    var x = document.getElementById("demo");
    x.style.fontSize = "25px"
    x.style.color = "red"
}
</script>

<button onclick="myFunction()">Click Me!</button>
Try it Yourself »

SQL

A language for accessing databases

LEARN SQL

PHP

A web server programming language

LEARN PHP

jQuery

A JavaScript library for developing web pages

LEARN JQUERY

W3.CSS

A modern CSS framework for faster and better responsive web sites

LEARN W3.CSS

Color Picker

Colorpicker

Bootstrap

Bootstrap is a CSS framework for designing better web pages

LEARN BOOTSTRAP

Web Templates

Browse our selection of free responsive HTML Templates

W3.CSS Templates

How To Section

Code snippets for HTML, CSS and JavaScript

Comments

Popular posts from this blog

learn python easily

nasa creation : suhailbinismail contact us : suhaillbk2000@gmail.com @suhailbinismail Follow Engineering at @Google. Previously at Airbnb. Aug 20, 2016 Step  by step on learning Python programming. Easiest way in the world Everything here is free. There are many paid books/materials out there, but this free ones as just as good. Are you a total beginner or you know to program in other languages ? Part 1  for Total Beginners that have no programming experience. Part 2  for people that have “some” programming experience with other languages (test: you can play with “for loop”/”while loop” easily) Part 1: Total Beginners in Programming Don’t install anything yet, but go to https://repl.it/languages/python3 In the first part you’ll better do the work there. After that install Intellij’s PyCharm Community Edition (free) Do you prefer video or written material ? (go down for written) For Video...

sample python codings

suhailusama : nasa creation contact us : suhaillbk2000@gmail.com  owner info : suhailbinismail  country : India 50 Examples Documentation Release 1.0 @suhail usama sep,08,2018 Contents 1 Introduction 3 2 Convert Fahrenheit to Celsius 5 3 Background: Algorithms 9 4 Background: Measuring Complexity 13 5 Simulating The Monty Hall Problem 17 6 Background: Drawing Graphics 23 7 Simulating Planetary Orbits 29 8 Problem: Simulating the Game of Life 35 9 Reference Card: Turtle Graphics 43 10 Indices and tables 45 CHAPTER 1 Introduction Welcome to “50 Examples for Teaching Python”. My goal was to collect interesting short examples of Python programs, examples that tackle a real-world problem and exercise various features of the Python language. I envision this collection as being useful to teachers of Python who want novel examples that will interest their students, and possibly to teachers of mathematics or science who want to apply P...