-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>If ____ has a million fans, I am one of them</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<span class="text fixed-text">If </span>
<span class="text variable-text"></span>
<span class="text fixed-text">has a million fans, I am one of them</span>
</div>
<div class="options">
<input id="name" type="text" required placeholder="Gawr Gura"/>
<button id="submit" type="button">Now get your work, you simp!</button>
<p>If <span class="change">Suisei</span> has a million fans, then I am one of them</p>
<p>If <span class="change">Suisei</span> has ten fans, then I am one of them</p>
<p>If <span class="change">Suisei</span> has one fan, then that is me</p>
<p>If <span class="change">Suisei</span> has no fan, then I am dead</p>
<p>If the world is against <span class="change">Suisei</span>, then I am against the world</p>
</div>
<script src="script.js"></script>
</body>
</html>