/html_aria

learn html, css, js.

Primary LanguageHTMLMIT LicenseMIT

html_aria

This file that I studied while learning web development consists of HTML, CSS, and JavaScript. It also contains a wealth of basic web information and references.

introductiontable of contentsDownloadRelatedLicense

🚀 introduction

"In my journey as a web developer, I have delved into a comprehensive file encompassing the fundamental building blocks of web development – HTML, CSS, and JavaScript. This resource not only equips me with the essential coding languages but also serves as a treasure trove of invaluable web-related information and references. This amalgamation of knowledge has been instrumental in shaping my understanding of web development, making it an indispensable asset in my quest to master the art of creating web experiences."

html5 css3 javascript bootstrap

📋 Table of Contents

Create Repository on Github
  1. Create a New Repository on GitHub:
    • Log in to your GitHub account.
    • Click the "+" sign in the top right corner and select "New repository."
    • Follow the prompts to create a new repository. Note the repository URL.
  2. Initialize the Git Repository:
    • Run the following commands to initialize a Git repository and make an initial commit:
      git init
      git add .
      git commit -m "Initial commit"
  3. Connect to GitHub:
    • Use the following command to add the remote GitHub repository as the origin:
      git remote add origin your-repository-url
      Replace your-repository-url with the URL of the GitHub repository you created in step 1.
  4. Push to GitHub:
    • Finally, push your local repository to GitHub with the following command:
      git push -u origin master
    Your local folder is now connected to your GitHub repository. You can manage and collaborate on your project using Git and GitHub.
  5. git date
    • Use the following command to commit with yesterday's date
      git commit --date="yesterday" -m "update"
    • Use the following command to commit with a custom date (e.g., 1st February 2024)
      git commit --date="2024-02-1" -m "update"
      
Create Page Website on Github
  1. Configure the Repository:
    • Go to your GitHub repository on the web.
    • Click on the "Settings" tab.
    • Scroll down to the "GitHub Pages" section.
  2. Select a Source Branch:
    • In the "Source" section, choose the branch you want to use for GitHub Pages. The "main" or "master" branch is common.
  3. Save Your Changes:
    • After selecting the source branch, click "Save."
  4. Wait for Deployment:
    • GitHub Pages will now deploy your website. It might take a few minutes.
  5. Access Your Website:
    • Once the deployment is complete, you'll see a message with the URL where your website is published, such as https://your-username.github.io/your-repo-name.
  6. Custom Domain (Optional):
    • If you have a custom domain, you can configure it in the GitHub Pages settings for your repository.
  7. Edit Your Website:
    • To update your website, make changes to the files in your repository. GitHub Pages will automatically update based on the changes in your source branch.
  8. README.md:
    • Make sure to update your README.md with information about your website, its purpose, and how to use it. That's it! You've created a website hosted on GitHub Pages that can be accessed online.

🔨 download

  1. Open a terminal or command prompt on your computer.
  2. Navigate to the directory where you want to save this project.
  3. Use the following command to download the project from the GitHub repository:
git clone https://github.com/ariafatah0711/html_aria.git

📈 related

©️ license