-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreleaseNotes.html
More file actions
58 lines (56 loc) · 975 Bytes
/
releaseNotes.html
File metadata and controls
58 lines (56 loc) · 975 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Release Notes</title>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h1>Release Notes</h1>
<table style="width: 100%">
<tr>
<th>JIRA ID</th>
<th>Summary</th>
<th>Description</th>
<th>Status</th>
<th>Testing Type</th>
</tr>
<tr>
<td>DEV-1</td>
<td>This is a summary</td>
<td>This is a description
and it is multiple lines</td>
<td>In Progress</td>
<td>SIT</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Release Notes</title>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h1>Release Notes</h1>
<table style="width: 100%">
<tr>
<th>JIRA ID</th>
<th>Summary</th>
<th>Description</th>
<th>Status</th>
<th>Testing Type</th>
</tr>
</table>
</body>
</html>