Come creare un file html

Esempi di codice

4
0

html avvia una pagina

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>
2
0

crea pagina html

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
1
0

come creare un file html

<!-- Use any text editor, create a new file, paste this
and save it as index.html-->

<!DOCTYPE html>
<html>
  <head>
		<title> A Sample Webpage </title>
  </head>
  
  <body>
     <p> Hello World! </p>
  </body>
</html>
1
0

come creare un documento html

First, you have to tick "File name extensions" if you haven't.
Secondly, you need to make a file somewhere in YOUR user. Make sure that it 
ends with .html
Then, copy this code:
<!DOCTYPE html>
<html>
  <head>
  	<title>Name your document title</title>
  </head>
  <body>
  	Put your document apperance here...
  </body>
</html>
Finally, open the HTML document and then you have your page!
0
0

come creare un file html

Make a folder
Create a file with .html at the end of it and open it with a text editor

In altre lingue

Questa pagina è in altre lingue

Русский
..................................................................................................................
English
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................