-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
36 lines (32 loc) · 878 Bytes
/
demo.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
36
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@500&display=swap"
rel="stylesheet"
/>
<link href="/f-end/src/index.css" rel="stylesheet" />
</head>
<body>
<div class="header">
<h1>welcome to debonairbnb</h1>
</div>
<div class="fake-body">
<h2>We have charters, critiques for all our patrons</h2>
<button class="btn">Submit</button>
<button class="btn-cancel">Cancel</button>
<div class="form-errors">
<ul>
<li>error 1</li>
<li>error 2</li>
<li>error 3</li>
</ul>
</div>
</div>
<div class="footer">
all of the links for the footer if we want one can go inside this
big ol' bar at the bottom of the screen
</div>
</body>
</html>