HTML stands for hypertext markup language and is the language used to create web pages. However, before you start building a site, you’ll want to have a plan.
Wireframing is a great practice to use when planning your site. The goal of wireframing is to build the basic structure and flow of your site, like a rough draft. Don’t put too much effort into the content and style, but do consider a few of the following points:
If you’re not sure if your wireframe is complete, consider these goals:
Once your wireframing is done, you’re ready to bust out the HTML!
HTML is made up of elements that are defined by < tags >. Most, but not all elements, have an < opening > and </ closing > tag. Tags consist of an < elementName attributes=”setting” > content </ elementName >
The structure and content of a site is built using these tags. Styling will be added later through cascading style sheets.
Semantic coding is used to add clarity of purpose to what you build. Semantic tags tell you their purpose before adding content; header tags make a header, nav tags point you to navigation elements, etc. This makes it easier for you, or a collaborator, to understand what’s happening in your code, allows search engines to understand what’s contained in your site, and aids in navigation with accessibility tools like screen readers.