-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamples.html
More file actions
70 lines (61 loc) · 1.86 KB
/
Copy pathsamples.html
File metadata and controls
70 lines (61 loc) · 1.86 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
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Apostille Samples</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<div class="header-container">
<div class="header-text">
<h1>Document Samples</h1>
</div>
</div>
</header>
<main class="verified-content">
<div class="verified-box">
<h2>Examples of Apostille Documents</h2>
<p style="margin-bottom: 16px;">
Below are sample examples of apostille and legalization documents.
These samples are provided for reference only.
</p>
<!-- SAMPLE 1 -->
<div style="margin-bottom: 20px;">
<strong>Sample Apostille (Front)</strong>
<div style="margin-top: 8px;">
<img
src="samples/sample-apostille-front.jpg"
alt="Sample Apostille Front"
style="width:100%; max-width:520px; border:1px solid #e5e7eb; border-radius:6px;"
>
</div>
</div>
<!-- SAMPLE 2 -->
<div style="margin-bottom: 20px;">
<strong>Sample Apostille (Back)</strong>
<div style="margin-top: 8px;">
<img
src="samples/sample-apostille-back.jpg"
alt="Sample Apostille Back"
style="width:100%; max-width:520px; border:1px solid #e5e7eb; border-radius:6px;"
>
</div>
</div>
<!-- SAMPLE 3 -->
<div style="margin-bottom: 20px;">
<strong>Sample Legalization Stamp</strong>
<div style="margin-top: 8px;">
<img
src="samples/sample-legalization.jpg"
alt="Sample Legalization"
style="width:100%; max-width:520px; border:1px solid #e5e7eb; border-radius:6px;"
>
</div>
</div>
<a href="about.html" class="back-btn">← Back to Verification</a>
</div>
</main>
</body>
</html>