Last month, I decided to sign up for a web development course by Jhankar Mahbub bhai - Programming Hero. The reason I signed up is because of the intense support system of Programming Hero and it teaches you with a certain goal - land a job/internship after completing the course.
Next year (2025) I will graduate from my university, and I don't want to be unemployed after that. So, I took on the mission of becoming a web developer by the end of 2024.
Module 1: Learn and Explore HTML π
Topics I learned:
- HTML Structure (title, favicon)
 - HTML tags: Paragraphs, Headings, Button, Line break
 - Tag Attributes, elements
 - Text Formatting (small, strong, bold, italic, emphasize)
 - Block vs Inline
 - Lists (Ordered, Unordered)
 - Ordered list types
 - Unordered list types
 - Anchor tag (open in new tab, download)
 - Image
 
This is the HTML I wrote for practice:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Travel Blog</title>
    <link rel="icon" href="\travel.png">
</head>
<body>
    <div>
        <!-- This this the welcoming Section -->
        <h1>Welcome To My Blog!</h1>
        <h2>I am Shemanto,<span style="color: #e0a82e; font-weight: bold;">THE TRAVELER</span></h2>
    </div>
    <div>
        <!--The places I Traveled-->
        <h3>These are the places I traveled so far:</h3>
        <ol type="i">
            <li>Sundorban</li>
            <li>Rajshahi</li>
            <li>Chittagong</li>
            <li>Rongpur</li>
            <li>Mymensingh</li>
        </ol>
    </div>
    <div>
        <!-- Favorite Food Lists -->
         <h3>My favorite food lists</h3>
         <ul type="square">
            <li>Rice & Egg vaji with hot lantil</li>
            <li>Mutton Biriani</li>
            <li>Guava Fruit</li>
            <li>Pocket Gate er Khichuri & Dim vaji with Tomato vorta</li>
         </ul>
    </div>
    <div>
        <!-- Images of Food  -->
         <h3>This are the images of Foods that I liked so far</h3>
         <span><img src="https://images.immediate.co.uk/production/volatile/sites/30/2020/08/chorizo-mozarella-gnocchi-bake-cropped-9ab73a3.jpg?quality=90&resize=556,505" alt="torkari" width="300" height="300"></span>
         <span><img src="https://loveincorporated.blob.core.windows.net/contentimages/gallery/d99329d6-ce59-4e2d-9513-96a879c7a4ae-gnocchibake.jpg" alt="sukna torkari" width="300" height="300"></span>
         <span><img src="https://media.self.com/photos/5acf7250164ba7734f61bca2/4:3/w_320%2Cc_limit/DINNER_09_BAKEDEGGS_071.jpg" alt="tomato torkari" width="300" height="300"></span>
         <span><img src="https://images.immediate.co.uk/production/volatile/sites/30/2022/08/Corndogs-7832ef6.jpg?quality=90&resize=556,505" alt="fastfood" width="300" height="300"></span>
    </div>
    <div>
        <button> <a href="https://www.linkedin.com/in/shemanto/" target="_blank">My LinkedIn Account</a> </button>
        <button><a href="\travel.png" download="download image">Download FabIcon</a></button>
    </div>
</body>
</html>
              
    
Top comments (0)