Mobile Design


Built with HTML5 and CSS3

  HTML5, also known as a HyperText Markup Language, is a document markup language that helps to construct web pages. To create a web page, you'll need to put in an opening and closing html tag, head tag, and the most important object for the overall page: the body tag. You can then put all your selected tags between the opening and closing body tag. For example, h1-h6 for header, p for paragraph, etc.


HTML5 Logo

  CSS, also known as Cascading Styling Sheets, The file helps to style your website with colors, background colors, font-styling, font-sizing, and so much more. When you want to select a tag you want to style, it helps to put your CSS in an external file in the same folder as your HTML, and add the link tag between the opening and closing head, internal where you can add a style tag to the header, or an inline where you can add your CSS styling in your tags by selecting style="background-color: blue;" in any of your HTML tags..

CSS3 Logo

Go Back To LP1