-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocedure.html
More file actions
107 lines (99 loc) · 5.34 KB
/
procedure.html
File metadata and controls
107 lines (99 loc) · 5.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ResearchSite</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css">
<link rel="stylesheet" href="stylesSE.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous" defer></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark nb-background-color">
<!-- lg = large breakpoint, navbar-light = make text dark, nb-background-color = custom css -->
<div class="container">
<a href="index.html" class="navbar-brand">
<img src="img/plant.png" alt="Plant Logo" class="d-inline-block align-text-top w-25">
</a>
<!-- Hamburger icon from Bootstrap -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navmenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navmenu">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="authors.html" class="nav-link hover-underline-animation nbMenuItem">Authors</a>
</li>
<li class="nav-item">
<a href="procedure.html" class="nav-link hover-underline-animation nbMenuItem">Procedure</a>
</li>
<li class="nav-item">
<a href="result.html" class="nav-link hover-underline-animation nbMenuItem">Result</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- How to use the sensor -->
<section class="procedure pb-4">
<div class="container">
<br>
<div class="text-center">
<h1>Procedure</h1>
<h2>Using a numbered list, describe your procedure with pictures</h2>
</div>
<hr><br>
<table class="table table-hover text-center table-light table-bordered border-dark-subtle">
<thead>
<tr class="table-success">
<th><h3>Step</h3></th>
<th><h3>Description</h3></th>
<th><h3>Image</h3></th>
</tr>
</thead>
<tbody class="table-group-divider">
<tr class="align-middle">
<th scope="row" class="table-secondary"><h2>1</h2></th>
<td><p class="howTo">Fill 2 boxes with 20 cups each, arranged in a 5x4 grid directly below the fluourescent lighting setup</p></td>
<td class="text-center px-0"><img src="img/step1CroppedResized.jpg" alt="Python Logo" class="small-20"></td>
</tr>
<tr class="align-middle">
<th scope="row" class="table-secondary"><h2>2</h2></th>
<td><p class="howTo">Plant 30 seeds in each cup</p></td>
<td class="text-center"><img src="img/step2Resized.jpg" alt="Python Logo" class="small-20"></td>
</tr>
<tr class="align-middle">
<th scope="row" class="table-secondary"><h2>3</h2></th>
<td><p class="howTo">Fertilize, water, provide vitamin C, and maintain seeds until they are 2 inches tall</p></td>
<td class="text-center"><img src="img/step3Cropped.jpg" alt="Python Logo" class="small-20"></td>
</tr>
<tr class="align-middle">
<th scope="row" class="table-secondary"><h2>4</h2></th>
<td><p class="howTo">Flip boxes 180 degrees and measure angles of each plant cup for a 1 hour period in 15 minute intervals</p></td>
<td class="text-center"><img src="img/plant1Cropped.png" alt="Python Logo" class="small-20"></td>
</tr>
<tr class="align-middle">
<th scope="row" class="table-secondary"><h2>5</h2></th>
<td><p class="howTo">Calculate statistical analysis of the data, which included total change in angle and change over each interval</p></td>
<td class="text-center"><img src="img/step5Cropped.jpg" alt="Python Logo" class="small-20"></td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Footer -->
<footer class="p-5 footer text-light text-center position-relative">
<div class="container">
<p class="lead">Copyright ©, SE 2023 Boostrap Demo</p>
<a href="#" class="position-absolute bottom-0 end-0 p-5">
<i class="bi bi-arrow-up-circle h2 icon-white"></i>
</a>
</div>
</footer>
</body>
</html>