Skip to content

Instantly share code, notes, and snippets.

@mehmetik
Created March 2, 2022 09:34
Show Gist options
  • Save mehmetik/ceda2eabe3e97c0d5987517fbb8a2c32 to your computer and use it in GitHub Desktop.
Save mehmetik/ceda2eabe3e97c0d5987517fbb8a2c32 to your computer and use it in GitHub Desktop.
Blank html page with body margin 0 padding 0
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="" />
<meta charset="utf-8">
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="">
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment