Skip to content

Instantly share code, notes, and snippets.

@JL-Cox
Created June 27, 2018 02:38
Show Gist options
  • Save JL-Cox/8c9f12c1b3bdbc970492e6c2f4775fa1 to your computer and use it in GitHub Desktop.
Save JL-Cox/8c9f12c1b3bdbc970492e6c2f4775fa1 to your computer and use it in GitHub Desktop.
First HTML/CSS Project
<!DOCTYPE html>
<head>
<title>Anna Dowlin</title>
<style>
body {
text-align: center;
background: url("http://dash.ga.co/assets/anna-bg.png");
background-size: cover;
background-position: center;
color: white;
font-family: helvetica;
}
p {
font-size: 22px;
}
input {
border: 0;
padding: 10px;
font-size: 18px;
}
input[type="submit"] {
background: red;
color: white;
}
</style>
</head>
<body>
<img src="/assets/anna.png">
<p>Hi! I'm Anna, a NYC-based marketer. Say hello!</p>
<input type="email" placeholder="Your email">
<input type="submit">
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment