Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

Sample HTML file

<!doctype html>
<html>
	<head>
		<title>Example website</title>
		<meta charset="utf-8"/>
		<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
		<meta name="viewport" content="width=device-width, initial-scale=1"/>
      <style type="text/css">* {font-family: Inter;} body {padding: 2em;}</style>
	</head>
	<body>
		<div>
			<h1>Hello world!</h1>
			<p>This is a example website.</p>
            <!-- Hi! -->
			<p>
				<a href="https://tiagorangel.com/">Learn More</a>
			</p>
		</div>
	</body>
</html>
 
PREVIOUS NEXT
Tagged: #Sample #HTML #file
ADD COMMENT
Topic
Name
3+7 =