UNPKG

basic-html-boilerplate

Version:

A basic CLI to generate a boilerplate HTML website (no frameworks included)

18 lines (15 loc) 329 B
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; width: 100vw; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }