-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.5 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.5 KB
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
33
34
35
36
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/fontawesome-free-5.11.2-web/css/all.min.css">
<link rel="stylesheet" href="./css/elvis.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" integrity="sha512-TyUaMbYrKFZfQfp+9nQGOEt+vGu4nKzLk0KaV3nFifL3K8n7lzb8DayTzLOK0pNyzxGJzGRSw78e8xqJhURJ3Q==" crossorigin="anonymous" />
<title>Animated CSS Login Snippet </title>
</head>
<body>
<div class="animated slideInLeft" id="square" >
<div class="animated bounceInUp" id="rightSquare"></div>
<div class="animated bounceInDown" id="leftSquare">
<div id="container">
<h1 class="cta-title">
Creative <br>
Signup Form Design
</h1>
<form className="animated slideInLeft">
<input type="text" placeholder="Name" class="option">
<input type="text" placeholder="Email" class="option">
<input type="password" placeholder="Password" class="option">
</form>
<button type="submit" class="animated infinite pulse button btn btn-info">
<span><i class="fab fa-twitter"></i></span>
<span id="twitter">Register with twitter</span>
</button>
</div>
</div>
</div>
</body>
</html>