Make your first ever simplest HTML code
MAKE YOUR FIRST HTML CODE:
By following the given below code you can easily make your very first simplest HTML code with which most of the coders start with and on later stages achieve their perfection
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>my first code </title>
</head>
<body>
<h1>
this is a heading
</h1>
</body>
</html>
Comments
Post a Comment