Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 1.81 KB

README.md

File metadata and controls

65 lines (48 loc) · 1.81 KB
## Hint 1: You can use the following HTML tags to create the card:

div
img
h2
p
button

## Hint 2: You can use the following CSS properties to style the card:

background-color
color
font-size
font-weight
text-align
border
border-radius
padding
margin
display
flex
justify-content
align-items
box-shadow
media queries for responsiveness

## Steps to upload on github After creating the project:

Method 1:

1. Create a new repository on GitHub.
2. Open the terminal.
3. Change the current working directory to your local project.
        command: cd your-local-project

4. Initialize the local directory as a Git repository.
        command: git init

5. Add the files in your new local repository. This stages them for the first commit.
        command: git add .

6. Commit the files that you've staged in your local repository.
        command: git commit -m "First commit"

7. Copy the HTTPS URL of your newly created repository.
8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.
        command: git remote add origin remote "repository_URL"

9. Push the changes in your local repository to GitHub.
        command: git push origin master

10. Go to the settings of the repository.
11. Scroll down to the GitHub Pages section.
12. Click on the link provided to access the deployed website.


Method 2:

1. Create a new repository on GitHub.
2. upload the created files to the repository.
3. Go to the settings of the repository.
4. Scroll down to the GitHub Pages section.
5. Click on the link provided to access the deployed website.