Personal Profile Page in HTML



  1. HTML Document Structure
      • <!DOCTYPE html>: Declares that this document is an HTML5 document.
      • <html lang="en">: Specifies that the language of the content is English.

      2. <head> Section

      • <meta charset="UTF-8">: Sets the character encoding to UTF-8, ensuring support for a wide range of characters.
      • <meta name="viewport" content="width=device-width, initial-scale=1.0">: Enables responsive design, making the page adjust to different screen sizes.
      • <title>Rupam's Personal Profile</title>: Sets the title that appears on the browser tab.
      • <style>: Contains CSS for styling the page.

      3. CSS Styling

      • body: Sets the font, removes default margins and padding, and sets a light background color.
      • container: Creates a central, max-width container with padding, centered on the screen.

      Profile Header Styling

      • profile-header: Centers content and adds padding.
      • img: Styles the profile image as a circle (border-radius: 50%) and sets its size.
      • h1 and p: Styles the header text with font size and color adjustments.

      Section Styling

      • .section: Adds space above each section.
      • h2 and p: Adds visual styling to headings and paragraphs.

      Contact Info Styling

      • .contact-info: Adds spacing above the contact section.
      • ul and li: Removes bullet points from the list and adjusts colors.

      4. <body> Section

      • <body>: Contains the main visible content.
      • <div class="container">: Central container that wraps all page content.
      • profile-header: Displays the profile image (<img src="profile.jpg">), name (<h1>Rupam</h1>), and title (<p>Canva Template Creator | Web Enthusiast | Digital Creator</p>).

      5. “About Me” Section

      • section: Introduces the “About Me” section, with a title (<h2>About Me</h2>) and a paragraph about yourself.


      6. Skills Section

      • Lists skills in an unordered list format.

      8. Lists skills in an unordered list format.

      • Closes the main container, body, and html tags to complete the document.