-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (49 loc) · 1.49 KB
/
index.html
File metadata and controls
61 lines (49 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Welcome to CSS Selector Test Page <small>by Agenty</small></h1>
<div class="introduction">
<p>My name is Scraping <span id="surName">Agent.</span></p>
<p id="myAddress">I live in New York</p>
<p>I have many partners:</p>
</div>
<ul id="listofPartners">
<li>Text Classifer Agent</li>
<li>Change Tracking Agent</li>
<li>Document Extractor Agent</li>
<li>OCR Agent</li>
</ul>
<p>All my partners are great!
<br> But I really like Text classifer agent!</p>
<p lang="fr" title="Hello">Bonjour</p>
<h3>I have 4 pricing plans</h3>
<p><b>I love each of them:</b></p>
<table class="table table-bordered">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Starter</td>
<td>$29</td>
</tr>
<tr>
<td>Basic</td>
<td>$49</td>
</tr>
<tr>
<td>Professional</td>
<td>$99</td>
</tr>
<tr>
<td>Enterprise</td>
<td><code>This is secret :)</code></td>
</tr>
</table>
</div>
</body>
</html>