-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (107 loc) · 4.23 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yardy Wiki Page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<link href="https://fonts.googleapis.com/css?family=Exo:400,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">
<!-- <link rel="stylesheet" href="css/debug.css"> -->
</head>
<body>
<section class="hero is-dark is-small">
<!-- Hero head: will stick at the top -->
<div class="hero-head">
<!-- NAVIGATION BAR -->
<nav class="navbar">
<div class="container">
<div id="navbarMenuHeroA" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item is-active">
Home
</a>
<a class="navbar-item" href="https://gomockingbird.com/projects/ktd3alt">
Prototype
</a>
<a class="navbar-item" href="https://github.com/naricci/Yardy">
GitHub
</a>
<!-- <span class="navbar-item">
<a class="button is-primary is-inverted">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Download</span>
</a>
</span> -->
</div>
</div>
</div>
</nav>
</div>
<!-- Hero content: will be in the middle -->
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title has-text-primary">
<strong>Yardy</strong>
</h1>
<h2 class="subtitle tagline">
<i>a website for yard sale enthusiasts</i>
</h2>
</div>
</div>
<!-- Hero footer: will stick at the bottom -->
<div class="hero-foot">
<nav class="tabs">
<div class="container">
<ul class="has-text-primary">
<!-- <li class="is-active"><a>Overview</a></li> -->
<li><a href="proposal.html">Proposal</a></li>
<li>
<a class="navbar-item" href="gantt-chart.html">
Gantt Chart
</a>
</li>
<li>
<a class="navbar-item" href="use-case-diagram.html">
Use-Case Diagram
</a>
</li>
<li>
<a class="navbar-item" href="database-diagram.html">
Entity Relationship Diagram
</a>
</li>
<li>
<a class="navbar-item" href="activity-diagram.html">
Activity Diagram
</a>
</li>
<li>
<a class="navbar-item" href="class-diagram.html">
Class Diagram
</a>
</li>
<li>
<a class="navbar-item" href="sequence-diagram.html">
Sequence Diagram
</a>
</li>
</ul>
</div>
</nav>
</div>
</section>
<!-- MAIN CONTENT -->
<section class="section">
<div class="container">
<p class="subtitle">
<strong>Yardy</strong> is a website, designed and developed by Mat Holden, Jordan-Michael Bogoslawski and Nick Ricci. We wanted to create a product that tracks yard sales throughout the United States. Yardy users can search for upcoming yard sales in their local community. The website also provides a user with a detailed itinerary based on the date, time and location of yard sales in the surrounding area. A user will be able to add and remove future events from his or her favorites list. This list will be used to create personalized directions. People will need to create a Yardy account in order to post a yard sale on the website.
</p>
</div>
</section>
</body>
</html>