diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-01-02 00:35:49 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-01-02 00:35:49 +0500 |
commit | c91b841f79d0c489f9f9526120a5412b4f025cbf (patch) | |
tree | 89a396a0aed3bb8649e4fb741e33028009042706 |
initial commit
-rw-r--r-- | images/maxwell.gif | bin | 0 -> 609986 bytes | |||
-rw-r--r-- | index.html | 22 | ||||
-rw-r--r-- | scripts/helloworld.js | 8 | ||||
-rw-r--r-- | style.css | 21 |
4 files changed, 51 insertions, 0 deletions
diff --git a/images/maxwell.gif b/images/maxwell.gif Binary files differnew file mode 100644 index 0000000..a91e54b --- /dev/null +++ b/images/maxwell.gif diff --git a/index.html b/index.html new file mode 100644 index 0000000..18ac08e --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>pwyazha</title> + <link rel="icon" type="image/gif" href="images/maxwell.gif"> + <link rel="stylesheet" type="text/css" href="style.css"> + <meta charset="utf-8"> + </head> + <body> + <header> + <h1>Hello, this is <em>my</em> website.</h1> + Thanks for stopping by! + </header> + <h2>Well...</h2> + <p>nya~</p> + <img src="images/maxwell.gif" /> + <footer> + <a href="https://git.pwyazha.ru">git</a> + </footer> + <script src="scripts/helloworld.js"></script> + </body> +</html> diff --git a/scripts/helloworld.js b/scripts/helloworld.js new file mode 100644 index 0000000..32ce9fd --- /dev/null +++ b/scripts/helloworld.js @@ -0,0 +1,8 @@ +let count_number = 10; +let count; +for (count = 0; + count < count_number; + ++count) +{ + console.log(count); +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..217205e --- /dev/null +++ b/style.css @@ -0,0 +1,21 @@ +body { + margin: 40px auto; + max-width: 650px; + line-height: 1.6; + font-size: 18px; + padding: 0 10px; + color: #404040; +} + +h1, h2, h3 { + line-height: 1.2; +} + +img { + width: 100%; +} + +footer { + text-align: center; + padding: 30px 0; +} |