Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.43 KB

File metadata and controls

40 lines (31 loc) · 1.43 KB

markdown

markdown set of symbol can use it to write code similar html css code on github this symbol allowed us style text and add img ,link,.....

there are many symbols can use it example Headers 

(#) this symbol meaning # eman (header h1) ####### eman(####### meaning header h6)

Emphasis.

hello (hello) This text will be italic whats your name (whats your name) This text will be bold Images Format: fllower and so on can learn about it from this link https://guides.github.com/features/mastering-markdown/ the link in the github symbol it GitHub [] the squerbrackt contain the name of link  () the parentheses contain the link markdown Additional information for encryption purposes Any reference to a commit’s SHA-1 hash will be automatically converted into a link to that commit on GitHub.

if you using github from terminal follow this instruction

to go folder that contain your project write the command line git clone https://github.com/username/username.github.io  to add index.html enter command line cd username.github.io

echo "Hello World" > index.html to Add, commit, and push your changes: git add --all

git commit -m "Initial commit"

git push -u origin main