├── HTML ├── comments.html ├── NO-HTML.html ├── sushi-platters.jpg ├── home.html ├── elements.html ├── images.html ├── WITH-HTML.html ├── formatting.html ├── styles.html ├── computercode.html ├── javascript.html ├── headings.html ├── quotations.html ├── forms.html ├── colors.html ├── tables.html └── layout.html └── README.md /HTML/comments.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML/NO-HTML.html: -------------------------------------------------------------------------------- 1 | This is a Heading 2 | This is a paragraph. -------------------------------------------------------------------------------- /HTML/sushi-platters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SodingMy/HTML-CSS/HEAD/HTML/sushi-platters.jpg -------------------------------------------------------------------------------- /HTML/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

My First Heading

6 |

My first paragraph.

7 | 8 | 9 | -------------------------------------------------------------------------------- /HTML/elements.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

My First Heading

6 |

My first paragraph.

7 | 8 | 9 | -------------------------------------------------------------------------------- /HTML/images.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

Sushi King

6 | Sushi King 7 | 8 | 9 | -------------------------------------------------------------------------------- /HTML/WITH-HTML.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Page Title 5 | 6 | 7 | 8 |

This is a Heading

9 |

This is a paragraph.

10 | 11 | 12 | -------------------------------------------------------------------------------- /HTML/formatting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

This text is bold

6 |

This text is italic

7 |

This is subscript and superscript

8 | 9 | 10 | -------------------------------------------------------------------------------- /HTML/styles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

I am normal

6 |

I am red

7 |

I am blue

8 |

I am big

9 | 10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HTML-CSS 2 | This source code provides example for HTML. 3 | 4 | ##FAQ/CONTACT/TROUBLESHOOT 5 | Mohammad Nurdin bin Norazan 6 | 7 | - http://github.com/datomnurdin 8 | - http://twitter.com/datomnurdin 9 | - mohammadnrdn@gmail.com 10 | -------------------------------------------------------------------------------- /HTML/computercode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

Some programming code:

6 | 7 | 8 | var x = 5;
9 | var y = 6;
10 | document.getElementById("demo").innerHTML = x + y; 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /HTML/javascript.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

My First JavaScript

6 | 7 | 10 | 11 |

12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /HTML/headings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My First HTML 6 | 7 | 8 | 9 | 10 | 11 |

This is heading 1

12 |

This is heading 2

13 |

This is heading 3

14 |

This is heading 4

15 |
This is heading 5
16 |
This is heading 6
17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/quotations.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

Here is a quote from WWF's website:

6 |
7 | For 50 years, WWF has been protecting the future of nature. 8 | The world's leading conservation organization, 9 | WWF works in 100 countries and is supported by 10 | 1.2 million members in the United States and 11 | close to 5 million globally. 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /HTML/forms.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | First name:
7 | 8 |
9 | Last name:
10 | 11 |

12 | 13 |
14 | 15 |

If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".

16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/colors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

6 | Background-color set by using red 7 |

8 | 9 |

10 | Background-color set by using orange 11 |

12 | 13 |

14 | Background-color set by using yellow 15 |

16 | 17 |

18 | Background-color set by using blue 19 |

20 | 21 |

22 | Background-color set by using cyan 23 |

24 | 25 | 26 | -------------------------------------------------------------------------------- /HTML/tables.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |
CompanyContactCountry
Alfreds FutterkisteMaria AndersGermany
Centro comercial MoctezumaFrancisco ChangMexico
Ernst HandelRoland MendelAustria
Island TradingHelen BennettUK
Laughing Bacchus WinecellarsYoshi TannamuriCanada
Magazzini Alimentari RiunitiGiovanni RovelliItaly
61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /HTML/layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 41 | 42 | 43 | 44 |
45 | 46 |
47 |

City Gallery

48 |
49 | 50 | 57 | 58 |
59 |

London

60 |

London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.

61 |

Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.

62 |
63 | 64 | 65 | 66 |
67 | 68 | 69 | 70 | --------------------------------------------------------------------------------