HTML sample file
html_sample_file_200KB.html
200.0 KB
text/html
SHA256 verified
File details
Filename
html_sample_file_200KB.htmlSize200.0 KB (204801 bytes)
MIME type
text/htmlExtension
.htmlSHA256
70af58d82a06da062b1f11e3f3698a06fc381244c0bbd195ea9964e142b37374Download commands
Use in scripts and tests
curl -L -o html_sample_file_200KB.html \
https://samplefile.com/samples/download/code/html/html_sample_file_200KB.html/
wget -O html_sample_file_200KB.html \
https://samplefile.com/samples/download/code/html/html_sample_file_200KB.html/
import requests
url = "https://samplefile.com/samples/download/code/html/html_sample_file_200KB.html/"
resp = requests.get(url)
with open("html_sample_file_200KB.html", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/code/html/html_sample_file_200KB.html/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("html_sample_file_200KB.html", buf);
# Download and verify SHA256
curl -L -o html_sample_file_200KB.html https://samplefile.com/samples/download/code/html/html_sample_file_200KB.html/
echo "70af58d82a06da062b1f11e3f3698a06fc381244c0bbd195ea9964e142b37374 html_sample_file_200KB.html" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/code/html/html_sample_file_200KB.html/").content
assert hashlib.sha256(data).hexdigest() == "70af58d82a06da062b1f11e3f3698a06fc381244c0bbd195ea9964e142b37374"
More HTML files
Other HTML Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
html_sample_file_1MB.html |
1.0 MB | dd0a4a9c012f661f… |
Download |
html_sample_file_500KB.html |
500.0 KB | ce3defc976be3725… |
Download |
html_sample_file_50KB.html |
50.0 KB | b90cbcd2df67bd46… |
Download |
Learn more