-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 1.53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>Scrimbafy Me!</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,900&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<section class="intro">
<h1>Turn <strong>your picture</strong> into an iconic <strong>Scrimba avatar</strong></h1>
<span class="beta-text">Currently in Beta</span>
<p class="top-text">Powered by Scrimba</p>
</section>
<main class="main-content">
<img class="img-main" src="images/avatar.png" alt="My Scrimba avatar.">
<h2>Scrimbafy.me</h2>
<span class="subheading">Liven up your profile pic</span>
<p>The colorful and iconic Scrimba avatars are no longer just for members of the Scrimba team and its Avengers-caliber group of code reviewers. You can Scrimbafy your photo today!</p>
<form>
<input type="text" required placeholder="Name" aria-label="Name">
<input type="email" required placeholder="Email" aria-label="Email">
<input type="file" required accept="image/png, image/jpg" aria-label="Choose file">
<button class="btn btn-primary">Submit</button>
</form>
<p class="fine-print">We'll never share your information without permission</p>
</main>
</body>
</html>