css
css language Abbreviation for Cascading Style Sheets
It is a design language that defines the form of an HTML document. It is concerned with fonts,
colors, margins, width and height, background image of the site, distribution of areas, and many other things.
What is the difference between HTML and css language?
It is used to develop a structure and a logical system for the contents. As for css, it is used to add design to these contents
This is the best way to create a link to an external file that contains css orders
The external file is simply a text file that uses css suffixes
stylesheet.css
GitLab setup step by step
1stStep to create the Indexfile
Download the git software
2ndStep
Log in to your personal account on GitLab
3th Step
Create your Index file as shown in the picture
4th Step
Open the GIT Bash.
The following commands are used for the GITsetup:
git config --global user.name " YourUsername "
5th Step
git config --global user.email Your@Email
The same email that you use for GitLab
6th Step
git config --global core.editor nano
7th Step
ssh-keygen -t rsa -c "Your@Email"
8th Step
Identify your PC on your site by copying the key from SSh to =
9th Step
Go to your GIT account, in the upper right corner click on your profile then settings as shown in the picture
10th Step
For push your website
By using the Git Bash program, you need to type the following commands
- cd desktop To go to the desktop
- cd git Then go to my folder and I named it git
- From the GIT Repository, inside our name's branch, we copy this link
git clone "TheLinkThatYouCopied"
- Go back to the GIT Bash, and use cd YourFolderName
to navigate inside the working directory
Use the following commands to push all the files inside the Working Directory:
- git add -A
- git commit -m "any message"
- git push