Student Name: Bek Madias
Course: WEB Technologies 1 (Front End)
Instructor: Assel Alimzhan
Date: 13/09/2025
The objective of this assignment was to create a basic HTML webpage named ass1.html
that demonstrates fundamental web development concepts. The webpage had to include properly structured text, lists, images, links, tables, buttons, emojis, and forms. The task also aimed to improve understanding of HTML syntax, code organization, and webpage structure while encouraging personalization.
- Created a new file
index.html
. - Added the basic structure:
<!DOCTYPE html>
,<html>
,<head>
,<title>
, and<body>
. - Titled the page “My First Webpage.”
- Added headings
<h1>
,<h2>
,<h3>
for name, course, and section "About Me." - Wrote a short paragraph introducing myself.
- Created an ordered list (
<ol>
) for hobbies. - Created an unordered list (
<ul>
) for favorite websites.
- Inserted a personal photo using the
<img>
tag. - Added clickable links to OpenAI and GitHub with
<a>
.
- Added a simple button labeled “Click Me” (no functionality required).
- Created a 3-column table for Subject, Day, and Time.
- Entered a simple weekly class schedule.
- Designed a two-column table: left side for a menu, right side for main content.
- Added three emojis (😃, 💪, 🍕) to a paragraph describing my mood.
- Created a form with input fields for Name, Email, Favorite Color, and a Submit button.
Through this assignment, I learned the fundamentals of HTML and how to create a basic webpage from scratch. I now understand how different tags work together to structure text, display media, and collect user input. The optional challenge of using tables for layout helped me realize why CSS is usually preferred for modern web design. Overall, this project gave me confidence in building and presenting my first webpage.
