Giter Site home page Giter Site logo

intro-html's Introduction

Hi there! ๐Ÿ‘‹ I'm Sharique Ahmed A

About Me

  • ๐ŸŽ“ Enthusiastic Entry-Level Java Software Engineer
  • ๐Ÿ’ผ Skilled in Java, Spring Boot, and React.js
  • ๐ŸŒฑ Quick learner with a background in B.Tech IT
  • ๐Ÿ’ก Ready to contribute technical acumen and collaborate effectively

Education

  • Java Full Stack Software Development Bootcamp Course
    • Great Learning, Chennai | 2024
  • B. Tech Information Technology (CGPA: 8.22/10)
    • C. Abdul Hakeem College of Engineering and Technology, Melvisharam | 2023
  • HSC (Class XII) 55%
    • Anaikar Oriental Arabic Higher Secondary School, Ambur, Tamil Nadu | 2019
  • SSLC (Class X) 84%
    • Anaikar Oriental Arabic Higher Secondary School, Ambur, Tamil Nadu | 2017

Technical Skills

  • Programming Languages: Java, JavaScript
  • Libraries and Frameworks: Spring Boot, ReactJS, Bootstrap
  • Databases: MySQL
  • Tools and Technologies: Eclipse, VSCode, IntelliJ, Git, GitHub, Docker
  • Others: JDBC, Hibernate, POSTMAN API, Jenkins, GCP, Netlify

Projects

  • Todo Management Application: Developed a robust to-do management system utilizing React.js and Spring Boot, aimed at enhancing task organization and productivity. Implemented CRUD operations seamlessly, optimizing performance for improved user experience.
  • Ticket Tracker Spring Boot Application: Developed a full-featured ticket tracking application using Spring Boot. Implemented CRUD Operations and optimized it to improve performance.
  • Pharmacy Website Dashboard: Developed a Pharmacy Website Dashboard with a contact form for patient details. Showcased products on the website and included an add-to-cart button using HTML, CSS, JavaScript.
  • AI Text Summarizer: Built with Node.js and Hugging Face API, this project generates summaries for text inputs.

Certifications

  • Software Engineering Virtual Experience Program
    • Goldman Sachs, Forage | 2023
  • Experiential - Project Based Learning
    • NASSCOM, IBM, ICT Academy | 2023
  • Git and GitHub
    • Google, Coursera | 2020
  • Certified Network Security Specialist
    • ICSI, UK | 2020

Contact Me

Connect with Me

Feel free to connect with me and explore my projects!

intro-html's People

Contributors

github-learning-lab[bot] avatar githubteacher avatar hectorsector avatar

Watchers

 avatar

intro-html's Issues

Welcome

Let's build your first webpage

HTML is the markup language that forms the backbone of the internet. In this course, you will learn how to build a clean, stunning webpage using HTML which you can set as your browser's default start page. This is only the first step in your journey, but it will form an important foundation in your journey as a new developer.

screenshot of final product

What is HTML?

HTML stands for Hyper Text Markup Language. HTML is not a programming language. It is simply a way to describe the structure of your website. Your web browser reads the HTML document and displays it in the window.

Where does your website begin?

When someone enters your web address, the web standards will automatically look for a file called index.html and display it in your browser. Most people call this your home page.

Step 1: Hosting your webpage

It isn't enough to simply create a webpage on GitHub. You must deploy your webpage to a web host that is connected to the internet. For this course we will use GitHub Pages, but you could publish the HTML to any static host.

โŒจ๏ธ Activity: Turn on GitHub Pages

  1. Under your repository name, click Settings.
  2. In the GitHub Pages section, use the Select source drop-down menu to select main as your GitHub Pages publishing source.
  3. Return to this issue.

I may take up to a minute to respond as I wait for GitHub Pages to create a deployment of your repository. If you don't see anything after a minute, refresh this page.

For more information, see Configuring a publishing source for GitHub Pages in the GitHub Help.


I'll respond in this issue after GitHub Pages has finished deploying your site.

Create a list

Step 9: Create a list

Your site with your new photo can be seen at: https://sharique46.github.io/intro-html/

Note: Sometimes it takes a few minutes for a GitHub Pages site to reload. If your changes still don't appear after a few minutes, you might try clearing the cache in your browser and refreshing the page.

Ordered and unordered lists

Lists are used all over the internet. They come in two flavors: ordered and unordered.

  1. This
  2. Is an
  3. Ordered list

And...

  • This
  • Is an
  • Unordered list

You can create a list using the <ol> tag for ordered lists, and the <ul> tag for unordered lists. Then, each item must be wrapped in an <li>, or list item, tag. Here's the code that generates the list I showed you above:

<ol>
    <li>This</li>
    <li>Is an</li>
    <li>Ordered list</li>
</ol>

And...

<ul>
    <li>This</li>
    <li>Is an</li>
    <li>Unordered list</li>
</ul>

For the next exercise, you are going to create a list of your favorite websites. Later, we will add links so you can access those links quickly. For now, focus on creating the individual list items.

โŒจ๏ธ Activity: Create a list of your favorite sites

  1. Edit the index.html file in your main branch by using this direct link or going to the Code tab, clicking on the index.html file, clicking the pencil ๐Ÿ“ to edit the HTML.
  2. Inside the body tag, create a list, either ordered or unordered, of your favorite sites on the internet.
  3. In the Commit changes section, enter a commit message that describes what you've done.
  4. Ensure you've selected Create a new branch for this commit and start a pull request.
  5. Give your branch a descriptive name, like add-links-and-lists.
  6. Click on Commit changes.
  7. Give your pull request a title, and a comment.
  8. Click on Create pull request.

Look for my response in your new pull request

Add a header

Step 6: Add a header

Take a peek at your shiny new web page! It can be found at: https://sharique46.github.io/intro-html/

Headers create prominent text in the body of your web page. Headers come in different levels. For example, a header 1, or h1, is the largest, while a header 3, or h3, is smaller, and a header 6, or h6, smaller still. You can create headers in html using the h1, h2, h3, h4, h5, and h6 tags. Here's an example:

<h1>I'm a header 1!</h1>

โŒจ๏ธ Create a header for your web page

  1. Edit the index.html file in your main branch by using this direct link or going to the Code tab, clicking on the index.html file, clicking the pencil ๐Ÿ“ to edit the HTML.
  2. Between the body tags, add an opening <h1> tag, some content for the header, and a closing </h1> tag.
  3. In the Commit changes section, enter a commit message that describes what you've done.
  4. Ensure you've selected Create a new branch for this commit and start a pull request.
  5. Give your branch a descriptive name, like add-headers-and-images.
  6. Click on Propose file change.
  7. Give your pull request a title, and a comment.
  8. Click on Create pull request.

Look for my next response in your pull request

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.