forked from TechTalkLaramie/jquery-git-crashcourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4-collab.html
More file actions
144 lines (140 loc) · 3.85 KB
/
4-collab.html
File metadata and controls
144 lines (140 loc) · 3.85 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<html>
<head>
<title>Crashcourse Who's Who</title>
</head>
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script language="javascript">
// This is where we're going to put our hello world
</script>
<body>
<h1>Attendees</h1>
<ul id="todo-list">
<li>
<h2>Carter Parks</h2>
<div class="details">
<div>
<b>What do you do?</b>
I'm a Web Application Developer, a piano player, a ham radio operator, and I like to travel.
</div>
<div>
<b>Have you programmed before?</b>
Yes
</div>
<div>
<b>Will you be attending the hackathon?</b>
Yes
</div>
<div>
<b>What kinds of TechTalks would you like?</b>
I want to learn more about Elixir/Phoenix, incorporating a startup, VueJS, and learn about
other cool things people are doing here in Wyoming.
</div>
</div>
</li>
<li>
<h2>BARTAMEUS OF URUK</h2>
<div class="details">
<div>
<b>What do you do?</b>
Really? You haven't heard of me?
</div>
<div>
<b>Have you programmed before?</b>
There are many things I have done, programming amongst them.
</div>
<div>
<b>Will you be attending the hackathon?</b>
If I must.
</div>
<div>
<b>What kinds of TechTalks would you like?</b>
Ones where I'm released from the material plane.
</div>
</div>
</li>
<li>
<h2>J N</h2>
<div class="details">
<div>
<b>What do you do?</b>
Learning stuff
</div>
<div>
<b>Have you programmed before?</b>
Yes
</div>
<div>
<b>Will you be attending the hackathon?</b>
Yes
</div>
<div>
<b>What kinds of TechTalks would you like?</b>
Learn more stuff
</div>
</div>
</li>
<h2>Fred</h2>
<div class="details">
<div>
<b>What do you do?</b>
Help counsel entrepreneurs
</div>
<div>
<b>Have you programmed before?</b>
PASCAL 4.0
</div>
<div>
<b>Will you be attending the hackathon?</b>
You betcha
</div>
<div>
<b>What kinds of TechTalks would you like?</b>
I love all tech talks
</div>
</div>
</li>
<li>
<h2>Lenore Kubie</h2>
<div class="details">
<div>
<b>What do you do?</b>
I'm a chemist, CTO, TFP, friendly neighborhood pentester, musician, pro-drinker, and activist
</div>
<div>
<b>Have you programmed before?</b>
Yes
</div>
<div>
<b>Will you be attending the hackathon?</b>
Yes
</div>
<div>
<b>What kinds of TechTalks would you like?</b>
Ones with beer, and interesting people
</div>
</div>
</li>
<li>
<h2>Jared</h2>
<div class="details">
<div>
<b>What do you do?</b>
High Performance Computing, Storage, and Network.
</div>
<div>
<b>Have you programmed before?</b>
Yep, lots of Python, C, and Fortran.
</div>
<div>
<b>Will you be attending the hackathon?</b>
Yes
</div>
<div>
<b>What kinds of TechTalks would you like?</b>
Hyperscale orchestration, but all are interesting.
</div>
</div>
</li>
</ul>
</body>
</html>