Loading web tool...

Back

Basic Webpage Template

A basic HTML webpage template.

Close
Rotate layout Save code Display size: 0x0
Copy code

<!DOCTYPE html>


<

html

lang

=

"en-US"

>


\t

<

head

>


\t\t

<

meta

charset

=

"utf-8"

>

Note

\t\t

<

title

>

Basic Webpage Template

</

title

>

Note

\t\t

<

meta

name

=

"description"

content

=

"A basic HTML webpage template."

>

Note

\t\t

<

meta

name

=

"viewport"

content

=

"width=device-width, initial-scale=1.0"

>

Note

\t\t

<

link

rel

=

"icon"

href

=

"./favicon.png"

type

=

"image/x-icon"

>

Note

\t\t

<

style

>


\t\t\t

Note

\t\t

</

style

>


\t\t

<

link

rel

=

"stylesheet"

type

=

"text/css"

href

=

"./the-stylesheet-filename.css"

>

Note

\t

</

head

>


\t

<

body

>


\t\t

Note

\t\t

<

script

src

=

"./the-script-filename.js"

>

</

script

>

Note

\t\t

<

script

type

=

"text/javascript"

>

Note

\t\t\t

Note

\t\t

</

script

>


\t

</

body

>


</

html

>

N/A

A basic HTML web page template with both referenced and embedded javascripts and CSS styling.

Element version: 1.0 (Last updated: January 6, 2024)