-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
48 lines (47 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
</head>
<body>
<!--Contenuto Principale-->
<main>
<h1>Impariamo a caricare un progetto su GitHub</h1>
<div>
<h2>Questi sono gli step da seguire nell'ordine seguente:</h2>
<ol>
<li>
<p>creare e dare un nome (senza spazi) al repository su <a href="https://github.com/" target="_blank">GitHub</a></p>
<img src="img/step1.jpeg" width="600px">
</li>
<li>
<p>Creare il documento e <strong>salvarlo</strong> Control + S</p>
<img src="img/step2.jpeg" width="600px">
</li>
<li>
<p>Andare su Source Control e nel file premere il simbolo <strong>+ (Stage Changes)</strong></p>
<img src="img/step3.jpeg" width="600px">
</li>
<li>
<p>Adesso bisogna inserire il messaggio che si vuole dare alla <strong>Commit</strong> dopo bisogna premere la spunta per committare</p>
<img src="img/step4.jpeg" width="600px">
</li>
<h2>Siamo alla fine. Manca l'ultimo step, forza! 👌</h2>
<li>
<p>Andare su <strong>Commits o Repositories</strong> premere la spunta per fare la <strong>Push</strong> della commit</p>
</li>
<img src="img/step5.jpeg" width="600px">
</ol>
<h2>Ottimo lavoro, sei riuscito a caricare il tuo progetto su GitHub 👏</h2>
</div>
</main>
<!--Fine del contenuto principale-->
<!--Footer-->
<footer>
<p>Progetto realizzato con il 💚 da Filippo Mazzamuto</p>
</footer>
</body>
</html>