Artem
commited on
Commit
·
2cc1628
1
Parent(s):
75e43b5
README.md
CHANGED
|
@@ -7,4 +7,73 @@ sdk: static
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
+
<!DOCTYPE html>
|
| 11 |
+
<html lang="en">
|
| 12 |
+
<head>
|
| 13 |
+
<meta charset="UTF-8">
|
| 14 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 15 |
+
<title>Your Project Name</title>
|
| 16 |
+
<style>
|
| 17 |
+
body {
|
| 18 |
+
margin: 0;
|
| 19 |
+
padding: 0;
|
| 20 |
+
font-family: 'Arial', sans-serif;
|
| 21 |
+
background: url('background-image.jpg') center/cover no-repeat;
|
| 22 |
+
color: #fff;
|
| 23 |
+
height: 100vh;
|
| 24 |
+
display: flex;
|
| 25 |
+
flex-direction: column;
|
| 26 |
+
align-items: center;
|
| 27 |
+
justify-content: center;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
#container {
|
| 31 |
+
background: rgba(0, 0, 0, 0.7);
|
| 32 |
+
padding: 20px;
|
| 33 |
+
border-radius: 10px;
|
| 34 |
+
text-align: center;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
h1 {
|
| 38 |
+
font-size: 2.5em;
|
| 39 |
+
margin-bottom: 20px;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
p {
|
| 43 |
+
font-size: 1.2em;
|
| 44 |
+
line-height: 1.6;
|
| 45 |
+
margin-bottom: 20px;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
a {
|
| 49 |
+
color: #fcfcfc;
|
| 50 |
+
text-decoration: underline;
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
code {
|
| 54 |
+
background: #333;
|
| 55 |
+
padding: 2px 4px;
|
| 56 |
+
border-radius: 4px;
|
| 57 |
+
color: #fff;
|
| 58 |
+
}
|
| 59 |
+
</style>
|
| 60 |
+
</head>
|
| 61 |
+
<body>
|
| 62 |
+
<div id="container">
|
| 63 |
+
<h1>Your Project Name</h1>
|
| 64 |
+
<p>
|
| 65 |
+
Brief description of your project.
|
| 66 |
+
</p>
|
| 67 |
+
<p>
|
| 68 |
+
For more details, visit the <a href="#">documentation</a>.
|
| 69 |
+
</p>
|
| 70 |
+
<p>
|
| 71 |
+
Example usage:
|
| 72 |
+
<code>
|
| 73 |
+
git clone https://github.com/your-username/your-project.git
|
| 74 |
+
</code>
|
| 75 |
+
</p>
|
| 76 |
+
</div>
|
| 77 |
+
</body>
|
| 78 |
+
</html>
|
| 79 |
+
|