-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
84 lines (75 loc) · 2.22 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<title>Silent Auction</title>
<link href="https://fonts.googleapis.com/css?family=Fredoka+One&display=swap" rel="stylesheet" />
<link href="css/index.css" rel="stylesheet" />
</head>
<body>
<header>
<div class="container-two">
<div class="container">
<div class="silent-auction">
<h1>
The <br />
Silent <br />
Auction<br />
</h1>
</div>
<div class="navigation">
<a href="home.html"> Home</a>
<a href="about.html"> About</a>
<a href="start/run.html"> Start/Run Auction</a>
<a href="bid.html"> Make a bid</a>
</div>
</header>
<section class="container-home">
<img src="./alexander-mils-lCPhGxs7pww-unsplash.jpg" alt="Cash money" />
</section>
<hr />
<div class="content-container">
<section class="top-content">
<button>Sign up</button>
</section>
<section class="company-info">
<h1>
Silent Auction Gives Back
</h1>
<p>
Silent Auction provides people an opportunity to make money and own
items from the comfort of their own home by easily creating auctions
and making bids while benefitting numerous charities with a portion of
the sale. Every year charities lose out on millions of dollars by not
being able to consistently reach out to their target audience. Here,
at Silent Auction we provide a solution to find these bidders without the hassle.
</p>
</section>
<section class="How-it-works">
<h1>How it Works</h1>
<p>
An automated auctioneering system that allows users to both bid on items
via cash and sell items by easily uploading the item of focus along with
basic information on that item.
</p>
</section>
</div>
<section class="contact-info">
<h3>Contact</h3>
<br />
555 Walloughby Way
<br />
San Francisco, California
<br /> (574)-498-0293
<br />
thesilentauction@gmail.com
</section>
</body>
<footer>
Copyright Silent Auction
</footer>
</div>
</div>
</div>
</html>