-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
24 lines (20 loc) · 1.8 KB
/
head.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title of the page</title>
<link rel="stylesheet" href="./head.css"> <!-- We either use the stule tag and then write the CSS file or just make a file and link it here like this.-->
<meta charset="UTF-16"> <!-- UTF-16 is preffered for emojis and other languages-->
<meta http-equiv="refresh" content="5"> <!-- Redirect page after 5 seconds -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- makes sure that your pages work well in a large variation of screen sizes-->
<meta name = "author" content = "Swarn6402">
<meta name = "description" content = "This file provied important information about HTML head tag ans various attributes">
<script>
console.log("Add you code here");
</script>
<!-- Script or code can be added in the head or in the body as well -->
</head>
<body>
<h1>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Fugit blanditiis asperiores sit possimus officia esse obcaecati dignissimos maiores eos perferendis?</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Soluta corrupti minima laudantium facere veniam molestiae accusamus, assumenda nihil eveniet laborum amet rem voluptatem voluptas dignissimos accusantium quas praesentium tenetur dicta magni! Maiores corporis sed ullam iusto ex voluptas et aliquam minima odit non, voluptates cum minus beatae dignissimos similique tempora tenetur hic? Atque fugit esse perspiciatis quisquam, ea dolorem nam voluptate veritatis maiores delectus aperiam ex dolor adipisci ut numquam cumque quos obcaecati sint? Dignissimos voluptatem sit reprehenderit nobis nesciunt quibusdam labore doloremque, quis harum illo totam, hic non! Tempore iusto optio magnam harum neque maxime dicta ad natus possimus?</p>
</body>
</html>