Python
- Details
- Written by: Ettore
Python è un linguaggio ad alto livello creato da Guido Van Rossum, nato nel 1956, è un informatico olandese.
Io vi consiglio di usare Visual Studio Code per scrivere ed eseguire i file in Python.
Nuova pagina web
- Details
- Written by: Ettore
Ecco un esempio per creare una nuova pagina web con html.
____________________________________
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello, word!</title>
</head>
<body>
<h1>Hello, word!</h1>
<p>Hello, word!</p>
</body>
</html>
____________________________________