index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Моя домашняя страница</title>
  6. <link rel="stylesheet" href="../css/styles.css" />
  7. <script>
  8. window.onload = function(){
  9. document.querySelector("h1").style.color = "green"
  10. document.querySelector("h1").onclick = function (event) {
  11. event.target.style.color = "red";
  12. event.target.innerText = "Пока";
  13. };
  14. console.log("Вывод в лог консоли")
  15. //alert("Привееееет")
  16. }
  17. </script>
  18. </head>
  19. <body>
  20. <h1 class="centered">Привет!!!!</h1>
  21. <p>Как дела?</p>
  22. <h2>Обо мне</h2>
  23. <img src="/images/home.jpg" class="foto"/>
  24. <img src="../images/home2.jpg" class="foto centered"/>
  25. <p>
  26. <a href="https://ya.ru" target="_blank">Остальное искать здесь</a>
  27. </p>
  28. <form action="/send-feedback/" class="feedback-form" method="POST">
  29. <p>Отправьте мне сообщение!</p>
  30. <p><input type="text" name="name" placeholder="Ваше имя" /></p>
  31. <p><textarea name="message" placeholder="Ваше сообщение"></textarea></p>
  32. <p><input type="submit" value="Отправить "/></p>
  33. </form>
  34. </body>
  35. </html>