UNPKG
basic-html-boilerplate
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
A basic CLI to generate a boilerplate HTML website (no frameworks included)
basic-html-boilerplate
/
boilerplate
/
html
/
About.html
12 lines
•
290 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE
html
>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
<
title
>
About
</
title
>
<
link
rel
=
"stylesheet"
href
=
"../css/styles.css"
>
</
head
>
<
body
>
<
h1
>
About
</
h1
>
</
body
>
</
html
>