-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
69 lines (64 loc) · 2.18 KB
/
example.html
File metadata and controls
69 lines (64 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>P&C Demo - Search Results</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 20px;
}
.search-result {
margin-bottom: 20px;
padding: 15px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
}
.search-result a {
color: #1a0dab;
text-decoration: none;
font-size: 18px;
}
.status {
display: block;
margin-top: 5px;
font-size: 14px;
color: green;
}
.triggered {
color: green;
}
.not-triggered {
color: red;
}
</style>
</head>
<body>
<h1>P&C Demo - Search Results</h1>
<div class="search-result">
<a href="https://www.peek-cloppenburg.de/de/p/wellensteyn-steppmantel-mit-kapuze-modell-cordoba-black-1188768?utm_recova_trial=true">
https://www.peek-cloppenburg.de/de/p/wellensteyn-steppmantel-mit-kapuze-modell-cordoba-black-1188768?utm_recova_trial=true <br>
Wellensteyn Steppmantel mit Kapuze - Modell Cordoba (Black)
</a>
<span class="status triggered">triggering</span>
</div>
<div class="search-result">
<a href="https://www.peek-cloppenburg.de/de/p/wellensteyn-steppmantel-mit-kapuze-modell-cordoba-black-1188768">
https://www.peek-cloppenburg.de/de/p/wellensteyn-steppmantel-mit-kapuze-modell-cordoba-black-1188768
Wellensteyn Steppmantel mit Kapuze - Modell Cordoba (Black)
</a>
<span class="status not-triggered">triggering disabled</span>
</div>
<div class="search-result">
<a href="https://www.peek-cloppenburg.de/?utm_recova_trial=true">
https://www.peek-cloppenburg.de?utm_recova_trial=true
Peek & Cloppenburg - Home Page
</a>
<span class="status not-triggered">triggering disabled</span>
</div>
</body>
</html>