-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrainings.html
More file actions
67 lines (64 loc) · 2.07 KB
/
trainings.html
File metadata and controls
67 lines (64 loc) · 2.07 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
<!doctype <!DOCTYPE html>
<html>
<head>
<title>Software Developers CoP</title>
<link rel="stylesheet" href="css/bootstrap/css/bootstrap-yeti.min.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/">Software Developers CoP</a>
</nav>
<div class="container">
<strong>Past Trainings</strong>
<table class="table">
<thead>
<tr>
<th>Title</th>
<th>Teacher</th>
<th>Date</th>
<th>Location</th>
<th>About</th>
</tr>
</thead>
<tbody>
<tr>
<td>Web Development 101</td>
<td>Wilhelm Breitkreutz</td>
<td>December 2018</td>
<td>Davis, CA</td>
<td>none</td>
</tr>
<tr>
<td>R Scripting</td>
<td>Brian Breaker</td>
<td>May 2019</td>
<td>Little Rock, AR</td>
<td>none</td>
</tr>
<tr>
<td>Advanced Web Development</td>
<td>Wilhelm Breitkreutz</td>
<td>June 2019</td>
<td>Denver, CO</td>
<td><a href="advanced_June19.html">View Page</a></td>
</tr>
<tr>
<td>Advanced Web Development</td>
<td>Wilhelm Breitkreutz</td>
<td>August 2019</td>
<td>Hanover, NH</td>
<td>none</td>
</tr>
<tr>
<td>Advanced Web Development Framework Deep Dive Seminar</td>
<td>Wilhelm Breitkreutz</td>
<td>November 2019</td>
<td>Kansas City, MO</td>
<td>none</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>