-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase-diagram.html
106 lines (101 loc) · 3.47 KB
/
database-diagram.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Use Case Diagram</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" href="index.html">
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>
</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 is-active" 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">
<h1 class="title">Entity Relationship Diagram</h1>
<hr>
<figure class="image center">
<img src="img/database-diagram.png" alt="Entity Relationship Diagram for Yardy">
</figure>
</div>
</section>
</body>
</html>