-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (55 loc) · 1.64 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
<html>
<head>
<title>SWOT Analysis</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="copyright" content="Copyright © 2016 ________. All Rights Reserved.">
<meta name="theme-color" content="#08191e">
<meta content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes" name="viewport">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/beagle.css">
</head>
<body>
<div class="header-container">
<h1>Swot Analysis</h1>
</div>
<div class="grid-container">
<div class="grid-item">
<div class="card strengths">
<h2>Strengths</h2>
<div class="swot-editor">
</div>
</div>
</div>
<div class="grid-item">
<div class="card weaknesses">
<h2>Weaknesses</h2>
<div class="swot-editor">
</div>
</div>
</div>
<div class="grid-item">
<div class="card opportunities">
<h2>Opportunities</h2>
<div class="swot-editor">
</div>
</div>
</div>
<div class="grid-item">
<div class="card threats">
<h2>Threats</h2>
<div class="swot-editor ">
</div>
</div>
</div>
</div>
<div class="footer-container">
<span>SWOT Editor is open source on <a href="https://git.io/vyqlq" target="_blank">GitHub</a></span>
</div>
</body>
<script src="https://www.gstatic.com/firebasejs/3.6.9/firebase.js"></script>
<script src="//cdn.jsdelivr.net/medium-editor/latest/js/medium-editor.min.js"></script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/medium-editor/latest/css/medium-editor.min.css" type="text/css" media="screen" charset="utf-8">
<script src="./app.js"> </script>
<script src="./editor.js"> </script>
</html>