18 lines
556 B
HTML
18 lines
556 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Esercitazione</title>
|
|
</head>
|
|
|
|
<style>
|
|
body {
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
}
|
|
</style>
|
|
<body>
|
|
<h1>Esercitazione Git</h1>
|
|
<p>Creazione di una repository remota, sincronizzazione locale e caricamento della nuova pagina <code>index.html</code></p>
|
|
</body>
|
|
</html> |