-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_html.html
More file actions
67 lines (54 loc) · 1.7 KB
/
basic_html.html
File metadata and controls
67 lines (54 loc) · 1.7 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 html>
<html lang="en">
<head>
<title>Narrow Jumbotron Template for Bootstrap</title>
</head>
<body>
<ul>
<li>I am a list!</li>
<li>I am a list #2</li>
<li>I am a list #3</li>
</ul>
<ol>
<li>I am a list with numbers!</li>
<li>I am a list with numbers...</li>
<li>I am a list with numbers~~~</li>
</ol>
<table class='table'>
<tr>
<td>
<h4><a href="http://www.medinagrill.com/" target='_blank'>Medina Grill</a></h4>
<p>A Mediterranean Grill with multiple lunch options, including shawarma, hummus and falafel.</p>
</td>
<td>
<h4><a href="http://www.culinariaschnucks.com/" target='_blank'>Culinaria</a></h4>
<p>An full-service, urban grocery store with multiple grab and go breakfast and lunch options.</p>
</td>
</tr>
<tr>
<td>
<h4><a href="">Place #3</a></h4>
<p>----</p>
</td>
<td>
<h4><a href="">Place #4</a></h4>
<p>...</p>
</td>
</tr>
</table>
<img src='http://www.medinagrill.com/images/MedinaGrill-logo.jpg'>
<br><br>
<select>
<option>choice 1</option>
<option>choice 2</option>
</select>
<br><br>
Your name: <input type='text'>
<hr>
<textarea></textarea>
<br><br>
<input type='button' value='click me!'>
<br><br>
<input type="checkbox"> I like food!
</body>
</html>