Skip to content

Instantly share code, notes, and snippets.

@SpiffGreen
Created July 5, 2022 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SpiffGreen/9a51f6e163bce2c2b3090c226a7decbf to your computer and use it in GitHub Desktop.
Save SpiffGreen/9a51f6e163bce2c2b3090c226a7decbf to your computer and use it in GitHub Desktop.
Web1 - Frontend Heroku Hosting
<!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>Web App 1</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h2>Hello World</h2>
<p>I was made with html, css and javascript!</p>
</body>
</html>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
line-height: 35px;
}
body, html {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
min-height: 100vh;
background: black;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment