-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (106 loc) · 3.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XRXD1MG2XC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XRXD1MG2XC');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patent Application History Search | Easy Patent Lookup Tool</title>
<meta name="description" content="Quickly search for the history of a patent application using our easy-to-use tool. Enter a patent application number like JP2020003103 to get started.">
<meta name="keywords" content="patent search, patent application history, patent lookup, intellectual property">
<meta name="author" content="Your Company Name">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://www.yourwebsite.com/patent-search">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
margin-bottom: 1rem;
color: #333;
}
p.secondary-info {
margin-bottom: 1.5rem;
color: #666;
font-size: 0.9rem;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
input[type="text"] {
padding: 0.5rem;
width: 100%;
max-width: 300px;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 0.5rem 1rem;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Patent Prosecution History- A Patent Application History Search Tool",
"description": "A tool for searching the history of patent applications using application numbers.",
"url": "https://patent-prosecution-history.yaaaang.com/",
"applicationCategory": "Business",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0"
}
}
</script>
</head>
<body>
<div class="container">
<h1>Search for the History of a Patent Application</h1>
<p class="secondary-info">For example: JP2020003103</p>
<form id="searchForm">
<input type="text" id="patentNumber" name="patentNumber" placeholder="Enter Patent application number" required>
<button type="submit">Search</button>
</form>
</div>
<script>
document.getElementById('searchForm').addEventListener('submit', function(event) {
event.preventDefault();
const patentNumber = document.getElementById('patentNumber').value;
const url = `https://register.epo.org/rssFamily?apns=${patentNumber}&lng=en`;
window.open(url, '_blank');
});
</script>
</body>
</html>