mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1export const exampleComHtml = `<!doctype html>
2<html>
3<head>
4 <title>Example Domain</title>
5 <meta name="description" content="An example website">
6
7 <meta charset="utf-8" />
8 <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
9 <meta name="viewport" content="width=device-width, initial-scale=1" />
10 <style type="text/css">
11 body {
12 background-color: #f0f0f2;
13 margin: 0;
14 padding: 0;
15 font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
16
17 }
18 div {
19 width: 600px;
20 margin: 5em auto;
21 padding: 2em;
22 background-color: #fdfdff;
23 border-radius: 0.5em;
24 box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
25 }
26 a:link, a:visited {
27 color: #38488f;
28 text-decoration: none;
29 }
30 @media (max-width: 700px) {
31 div {
32 margin: 0 auto;
33 width: auto;
34 }
35 }
36 </style>
37</head>
38
39<body>
40<div>
41 <h1>Example Domain</h1>
42 <p>This domain is for use in illustrative examples in documents. You may use this
43 domain in literature without prior coordination or asking for permission.</p>
44 <p><a href="https://www.iana.org/domains/example">More information...</a></p>
45</div>
46</body>
47</html>`