-
Step 1: Pull the week2 folder from the SHA-C22-FullStackCourse repo by running this command:
git pull <your_remote_name> main
-
Step2: Start coding - solve HTML Basics assignment
-
Step3: push your work
-
Step4: Create a pull request back to your branch
For this assignment, you're going to create a basic webpage that includes some information about yourself.
- Create a new HTML file and save it with a meaningful filename and the ".html" extension. ex: index.html
- Set up the basic structure of the HTML document, including specifying the HTML version, creating the page header, and setting the title of the page to "Your Name Profile."
- Let's add some content to the webpage:
- Include an image of yourself using the <img> tag, and set the "src" attribute to the location of your photo on your computer or a web server.
-
Include your name as a header tag <h1>.
- Add a link tag <a> to the HTML document and set the "href" attribute to the URL of your Github account. Enter your profile name as the content of the tag.
-
Write a brief description of yourself (Bio). think about which HTML tag should you use.
- Create a list of your hobbies using the <ul> and <li> tags. This is a great opportunity to showcase some of your interests and help people get to know you better!
-
Feel Free to add additional sections to your profile like education, work experience, or skills.
-
Upload your project to netlify and submit the link in Athena platform along with the pull request you created in GitHub .