-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.02 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
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>SaaS Demo App</title>
<link rel="stylesheet" href="./css/output.css">
</head>
<body>
<main class="container">
<div class="header">
<div class="logo-container">
<h1 class="title">Z</h1>
</div>
<div class="stripe-header">
<div class="stripe-header-bottom"></div>
</div>
<div class="title-container">
<h1 class="title">SaaS Demo</h1>
</div>
</div>
<div class="stripe"></div>
<form class="info">
<input type="text" placeholder="Name" class="input" />
<input type="text" placeholder="Email" class="input" />
<input type="text" placeholder="Address" class="input" />
<div class="button-container">
<button type="reset" class="button"> Reset </button>
<button type="submit" class="button"> Submit </button>
</div>
</form>
</main>
</body>
</html>