Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 857 Bytes

File metadata and controls

31 lines (27 loc) · 857 Bytes

basic-html-template

Lets learn some basic html. The template we will be creating contains only basic html tags

🚀 Lets get Started

  1. Fork this repo

  2. Clone the repo

 git clone https://github.com/extinctsion0/basic-html-template.git
  1. Create a branch with name of your choice and switch to that
 git branch name-of-your-choice
 git switch name-of-your-choice

Or

git checkout -b name-of-your-choice
  1. Create a index.html file and try to create a similar template as in the link https://nurexcoder.github.io/template/

  2. Once your done with the template, commit the changes and push it to github

    git status
    git add .
    git commit -m "Your message"
    git push -u origin name-of-your-choice
  3. Then raise a pull request