
WEB DESIGN 101
Laying the Foundation with HTML
Web Design Basics: HTML
As a business owner, your website is your digital storefront. It’s the first impression potential customers have of your brand. To build a strong, effective website, you need to understand web design basics and the fundamentals of HTML. HTML, or HyperText Markup Language, is the language that web browsers use to interpret and display web content. Think of it as the blueprint of your website, providing the structure and framework for your pages.
The HTML Skeleton
Imagine your webpage as a living organism, thriving in the digital world. HTML would be the skeleton, providing the essential structure and support. A human body needs a strong framework to stand tall. It also needs a strong framework to function properly. Similarly, a webpage relies on HTML to maintain its shape and integrity. Without HTML, your webpage would be a formless mass, unable to interact with users or convey information effectively.
Every webpage, no matter how simple or complex, needs this underlying structure. This structure communicates with web browsers. Let’s dive into the bare essentials of this framework, the HTML skeleton that will give your “body” its form.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Webpage</title>
</head>
<body>
Hello World!
</body>
</html>
Let’s dissect this:
- <!DOCTYPE html>: Declares that this is an HTML5 document
- <html lang=”en”>: The root element of your page.
lang="en"specifies the language as English - <head>: Contains metadata about the page (not displayed on the page itself)
- <meta charset=”UTF-8″>: Sets the character encoding for proper text display
- <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>: Ensures your page adapts to different screen sizes
- <title>My First Webpage</title: Sets the title that appears in the browser tab
- <body>: This is where all your visible content goes! In this case, We added “Hello World!” in order to introduce ourselves

Adding Content: The Building Blocks
Now, let’s add some text to our page. HTML uses elements to structure content. Here are some common ones for text:
- Head: Contains metadata about your page, such as the title, description, and keywords.
- Body: Contains the visible content of your page, including text, images, and other elements.
- Heading tags (h1-h6): Used to structure your content and improve SEO.
- Paragraphs (p): Used to format text into paragraphs.
- Lists (ul, ol, li): Used to present information in a structured format.
- Links (a): Used to connect to other web pages or resources.
- Images (img): Used to display images on your website.
For a more in-depth list of elements you can go to W3Schools Website.
Let’s see them in action:
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Business Website</title>
<meta name="description" content="A professional website for my business.">
</head>
<body>
<h1>Welcome to My Business</h1>
<p>We offer high-quality products and services.</p>
<h2>Our Services</h2>
<ul>
<li>Product A</li>
<li>Product B</li>
</ul>
<img src="https://i0.wp.com/tekdep.com/wp-content/uploads/2024/04/Logo.png?resize=250%2C53&ssl=1" alt="My Business Logo">
</body>
</html>
In this example, we’ve added a main heading. We’ve also added a paragraph, a subheading, an ordered list and an unordered list. There is another paragraph with italicized text.
Why HTML Matters for Business Owners
- Control over your website: Understanding HTML gives you more control over the design and structure of your website.
- SEO benefits: Proper HTML structure can improve your website’s search engine ranking.
- Cost-effective: While hiring a web developer can be expensive, learning basic HTML can help you save money on website development.
- Foundation for further learning: HTML is the basis for more advanced web technologies like CSS and JavaScript.
Next Steps: Bringing Your Page to Life
- Learn more about HTML: There are numerous online resources and tutorials available to help you learn HTML.
- Practice: Create your own basic HTML pages to solidify your understanding.
- Consider a CMS: If you’re not comfortable with coding, use a content management system (CMS). A CMS like WordPress can make it easier to create and manage your website.
By understanding the fundamentals of HTML, you can lay the foundation for a successful online presence for your business.As always, if you are looking for more help with your web design needs, contact TEKDEP. If you want a web site designed for you, reach out to TEKDEP’s Development team.


