Jump to content

  • Free consultations and support
  • Live chatClick Here for Live Chat
  • Call ico 1888-906-1888
    Phone support: Open

    Ready for your call :)

    Our business hours:

    Mon — Fri, 2am — 8pm (EST)

    US & EU support teams

    Phone support: Closed

    We are back in: 1h 20m

    Our business hours:

    Mon — Fri, 2am — 8pm (EST)

    US & EU support teams


Creating a Web Page using HTML5

creating a web page html5

  • Please log in to reply
 

#1 OneDes

OneDes

    Senior Member

  • Designer
  • 282 posts

Posted 26 January 2013 - 04:33 PM

Open any text editor such as notepad and add the below code:
1.Begin by setting the doctype to HTML5
<!DOCTYPE HTML>

2.Add the <html> tag to specify the language. For English it would be like this:
<html lang = "en">

3.Create a <head> section.
<head>
<!—your basic.html -->

3.Specify the character set. If the pages are in English it should be like this
<meta charset = "UTF-8" />
4.Put in a title using <title></title>.
<title>yourbasic.html</title>

4.Don’t forget to Indent your code and close all opened tags
</head> will close the <head> tag.
5.Include the page’s bulk in the <body> tags.
<body>
<h1>First level Headline</h1>
<p>
paragraph

</p>

</body>
6. close your <html> tag with </html?
7.Save the file with the .html extension.





Also tagged with one or more of these keywords: creating a web page, html5

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users