-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (63 loc) · 3.24 KB
/
index.html
File metadata and controls
66 lines (63 loc) · 3.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SWOT Analysis Generator</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<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=Yatra+One&display=swap" rel="stylesheet">
<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=Arvo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class=center>
<h1>Simple and easy SWOT Analysis Generator</h1>
</div>
<hr>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">
<h5>Enter your Strengths</h5>
</label>
<textarea class="form-control" id="exampleFormControlTextarea1"
placeholder="I am very confident and very trustable etc...." rows="6"></textarea>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea2" class="form-label">
<h5>Enter your Weakness</h5>
</label>
<textarea class="form-control" id="exampleFormControlTextarea2"
placeholder="I couldn't work under pressure etc...." rows="3"></textarea>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea3" class="form-label">
<h5>Enter your opportunities</h5>
</label>
<textarea class="form-control" id="exampleFormControlTextarea3"
placeholder="Your opportunities like any job or particular position you worked before"
rows="6"></textarea>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea4" class="form-label">
<h5>Enter your Threats</h5>
</label>
<textarea class="form-control" id="exampleFormControlTextarea4"
placeholder="Any threats you have which will stop progress of your own" rows="3"></textarea>
</div>
<div class="col-auto center" style="border-bottom: 2px solid black;">
<button class="btn btn-primary mb-3" id="btnHere" href="generated.html">Generate Your SWOT Analysis</button>
</div>
</div>
<footer>This Project is done by Sai Prachodhan Devulapalli. Incase of any doubts please do contact me over phone:9160571016 or over email:devulapallisaiprachodhan26@gmail.com</footer>
<script src="compute.js"></script>
</body>
</html>