-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.95 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test Feed Reader</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> <!-- jQuery -->
<script type="text/javascript" src="feedreader.js"></script> <!-- Feed reader script -->
<link type="text/css" rel="stylesheet" href="feedreader.css" />
</head>
<body>
<section id="input"> <!-- Input section -->
Enter the URL of the feed to fetch and display: <input type="text" name="feedURL" />
</section>
<section id="chaninf"> <!-- Holds information on the channel -->
<table>
<tr class="clearable"> <!-- Row holding channel title -->
<th> <!-- Channel title heading -->
Channel Title
</th>
<td id="chantit"> <!-- Channel title content -->
Unknown
</td>
</tr>
<tr class="clearable">
<th> <!-- Channel Description heading -->
Channel Description
</th>
<td id="chandesc">
Unknown
</td>
</tr>
<tr class="clearable">
<th> <!-- Language heading -->
Channel Language
</th>
<td id="chanlang">
Unknown
</td>
</tr>
<tr class="clearable"> <!-- Channel image -->
<th>
Channel Image
</th>
<td id="chanImg">
</td>
</tr>
</table>
</section>
<section id="articles">
</section>
</body>
</html>