CCYI GLOBAL ACADEMY
Shop beginner-friendly tech courses, practical training tutorials, data tools, web development content, automation, and digital skills courses from Palace Tech Hub.
Shop beginner-friendly tech courses, practical training tutorials, data tools, web development content, automation, and digital skills courses from Palace Tech Hub.
Pay by Bank Transfer
Bank Name: UNITED BANK FOR AFRICA
Account Name: CCYI GLOBAL ENTERPRISE
Account Number: 1017417XXX
After payment, click “Confirm Payment on WhatsApp” below and send your proof of payment.
Total: ₦0
Web development is the process of creating and maintaining websites that run on the internet.
👉 In simple terms:
Web development = building websites and web applications
Examples:
A website is a collection of web pages that are accessible on the internet using a browser.
Examples of websites:
When you type a website (e.g., www.example.com):
A browser is a software used to access websites.
Examples:
A domain name is the address of a website.
Examples:
👉 It is what users type to access your site
Web hosting is where your website files are stored online.
👉 Think of it as:
This is what users see on the website.
Technologies:
This handles the logic and data behind the website.
Technologies:
WordPress is a tool (CMS) used to create websites without coding.
👉 Very important for beginners:
Students can use web development to:
Web development is about:
👉 “If you can build a website, you can create visibility. If you create visibility, you can create income.”
HTML stands for HyperText Markup Language.
👉 It is the standard language used to create the structure of web pages.
Simple Meaning:
HTML is the skeleton of a website.
HTML helps you:
👉 HTML uses tags to define elements on a page.
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first webpage.</p>
</body>
</html>
<!DOCTYPE html> → Defines HTML version<html> → Root of the page<head> → Information about the page<body> → Content users see👉 HTML is made of tags:
<p>This is a paragraph</p>
<p> → Opening tag</p> → Closing tag<h1>Main Heading</h1>
<h2>Sub Heading</h2>
<p>This is a paragraph.</p>
<a href="https://google.com">Visit Google</a>
<img src="image.jpg" alt="My Image">
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
Attributes provide extra information.
<a href="https://example.com">Click Here</a>
👉 href is an attribute.
<form>
<input type="text" placeholder="Enter your name">
<button>Submit</button>
</form>
👉 Used for:
Common sections:
👉 Together they form a complete website:
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to My Site</h1>
<p>This is my first website.</p>
<a href="#">Click Me</a>
</body>
</html>
Students can use HTML to:
👉 HTML is:
👉 “If there is no HTML, there is no website—everything starts from structure.”
Hobby (Free) Plan You can have up to 200 projects (websites/apps) under one account. Each project can have its own: Production deploy...