mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 06:20:42 -05:00
feat: add html skeleton
This commit is contained in:
parent
30369798b5
commit
d0ca652845
2 changed files with 43 additions and 0 deletions
|
@ -0,0 +1,6 @@
|
||||||
|
.container {
|
||||||
|
justify-content: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-content: center;
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>Join our Awesome Mailing list!</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link href="css/style.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="logo logo-photo"></div>
|
||||||
|
<div class="logo logo-text"></div>
|
||||||
|
</div>
|
||||||
|
<div class="form">
|
||||||
|
<h1 class="call-to-action">Join our mailing list!</h1>
|
||||||
|
<form action="" method="post">
|
||||||
|
<fieldset>
|
||||||
|
|
||||||
|
<label for="name">Name</label>
|
||||||
|
<input type="text" name="" id="name" placeholder="Enter your name.">
|
||||||
|
<label for="email">Email</label>
|
||||||
|
<input type="email" name="email" id="email" placeholder="you@example.com">
|
||||||
|
<label for="password">Password</label>
|
||||||
|
<input type="password" name="" id="password">
|
||||||
|
<label for="password_confirmation">Confirm Password</label>
|
||||||
|
<input type="password" name="" id="password_confirmation">
|
||||||
|
</fieldset>
|
||||||
|
<button type="submit">Sign Up</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="js/script.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue