Answers for "basic html template html"

32

html template

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Page Title Goes Here</title>
  <meta name="description" content="Description Goes Here">
  <link rel="stylesheet" href="style.css">
</head>
<body>
  // if scripts is required add:
  <script src="js/scripts.js"></script>
</body>
</html>
Posted by: Guest on October-31-2020
0

html template

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your title</title>
</head>
	<body>
	    
	</body>
</html>
Posted by: Guest on September-18-2021
2

template html

html:5 + [tab] ;)
Posted by: Guest on April-03-2021

Browse Popular Code Answers by Language