Web Dev? Click this!

Status
This thread has been locked.

tylerisjewish

richer than u
Premium
Feedback score
7
Posts
161
Reactions
47
Resources
0
Hey! So I built a simple frame that is the basics of every html site, so if you are just learning or also hate this part of coding, here you go :)

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<meta name=”Creator” content=”” />
<meta name=”Description” content=“” />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<link rel="stylesheet" href="style.css" type="text/css"/>
<link rel="icon" type="image/ico" href="">
</head>
<body>
<div id="Header">

</div>

<div id="Footer">

</div>

</body>
</html>
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

DarkKnight

DarkDZN
Supreme
Feedback score
116
Posts
491
Reactions
577
Resources
0
Hey! So I built a simple frame that is the basics of every html site, so if you are just learning or also hate this part of coding, here you go :)

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<meta name=”Creator” content=”” />
<meta name=”Description” content=“” />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<link rel="stylesheet" href="style.css" type="text/css"/>
<link rel="icon" type="image/ico" href="">
</head>
<body>
<div id="Header">

</div>
</body>
<div id="Footer">

</div>
</html>

Shouldn't the

Code:
<div id="Footer">
</div>

be inside the body? o_O
 
Status
This thread has been locked.
Top