-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathArcWhiz-q1.html
More file actions
69 lines (54 loc) · 1.94 KB
/
ArcWhiz-q1.html
File metadata and controls
69 lines (54 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-157837769-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-157837769-1');
</script>
<title>
HTML | InterQues | Coding Ninjas
</title>
<link rel="shortcut icon" type="image/png" href="../../assets/favicon.png"/>
<meta name="description" content="Why do we need to put DOCTYPE tag at the begining of every HTML file?">
</head>
<body>
<div>
<img src="../../assets/CN_logo.png" height='72px' alt="Coding Ninjas Logo">
</div>
<div>
<p>
<small>
<a href="../../index.html">Home</a>
> <a href="../index.html">HTML Questions</a>
> Why do we need to put DOCTYPE tag at the begining of every HTML file?
</small>
</p>
</div>
<div>
<div>
<h4>
<h4>Why do we need to put DOCTYPE tag at the begining of every HTML file?</h4>
</h4>
</div>
<br>
<br>
<div>
<strong>Answer:</strong>
<p>
Every HTML page needs a DOCTYPE tag because it tells the browser which version of HTML the HTML file is written in. This helps the browser to render the file correctly.
</p>
</div>
</div>
<hr>
<div>
<h5>
Similar Questions
</h5>
<ul>
</ul>
</div>
</body>
</html>