Some HTML and CSS code


SUBMITTED BY: feedyourbank

DATE: Sept. 19, 2016, 10:14 a.m.

FORMAT: Text only

SIZE: 622 Bytes

HITS: 870

  1. A little bit on HTML Code. Below is how a web developer starts to code a HTML web design code.
  2. <html>
  3. <head>
  4. <title>A Simple Web Page</title>
  5. <style>
  6. here is where you put your css and example of css code is
  7. h1{
  8. color: green
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <h1> This is a Simple Web Page Heading. </h1>
  14. <p>
  15. This is a simple web page content. The heading is always enclosed in the "H" tags and we have h1 - h6. The paragraph tag encloses every single paragraph and I know we all know what a paragraph is.
  16. </p>
  17. </body>
  18. </html>
  19. Take this little tip and do the homework by yourself. Have a nice day.

comments powered by Disqus