html shell

Solutions on MaxInterview for html shell by the best coders in the world

showing results for - "html shell"
Jazmín
23 Apr 2018
1<!DOCTYPE html>
2<html>
3	<head>
4	  <meta charset="UTF-8">
5	  <title>title</title>
6	</head>
7	<body>
8
9	</body>
10</html>
Natan
05 Jan 2019
1<!DOCTYPE html>
2<html lang="en">
3    <head>
4        <meta charset="UTF-8" />
5        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6        <meta
7            name="description"
8            content="A description of the page and its contents"
9        />
10        <link rel="stylesheet" href="styles.css" />
11        <title>Page Title</title>
12    </head>
13    <body>
14        <header>
15            <nav>
16                <ul>
17                    <li>Home</li>
18                    <li>Blog</li>
19                </ul>
20            </nav>
21        </header>
22        <main>
23            <section>
24                <article></article>
25            </section>
26        </main>
27        <script src=""></script>
28    </body>
29</html>
30
similar questions
queries leading to this page
html shell