create html body

Solutions on MaxInterview for create html body by the best coders in the world

showing results for - "create html body"
Katelynn
21 Nov 2017
1<!doctype html>
2<html>
3
4<head>
5<meta charset="UTF-8">
6<title>Learn programming the easy way :)</title>
7</head>
8
9<body>
10<h1>Simple standard HTML</h1>
11<p>This is the content.</p>
12</body>
13
14</html>