1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <html lang="en">
- <head class="head">
- <meta charset="UTF-8">
- <title>Title</title>
- <style type="text/css">
- .c3{
- color: #6f507d;
- font-size: 15px;
- font-family: monospace;
- }
- .c2{
- color: #219191;
- font-size: 25px;
- }
- .c1{
- color: #915021;
- font-size: 35px;
- font-family: cursive;
- }
- #btn1 {
- margin-left: 30px;
- transform: rotate(90deg);
- background-color: ##F0E68C;
- font-size: 20px;
- color: #00FF00;
- transition: 0.6s;
- }
- #btn1:hover{
- background-color: #DC143C;
- color: #6A5ACD;
- padding-top: 11px;
- }
- </style>
- <body>
- <h1>slozhno</h1>
- <script type="text/javascript" src="./script.js"></script>
- </body>
- </html>
|