Информатика, вопрос задал fredlod08 , 1 год назад

напишите пожалуйста это html ​

Приложения:

Ответы на вопрос

Ответил Аноним
0

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Вариант2</title>

<style type="text/css">

 body {

  background-color: blue;

  color: white;

  font-size: 18px;

 }

 h1, h2 {

  margin: 50px 0;

 }

 h1 {

  font-size: 60px;

  border-bottom: 1px solid white;

  border-top: 1px solid white;

  padding-top: 100px;

 }

 span {

  font-size:40px;

  text-decoration: underline;

 }

 #purple {

  color: purple;

  text-decoration: none;

 }

 #fonts {

  font-style: italic;

  text-decoration: none;

 }

 .center {

  text-align: center;

 }

 .right {

  text-align: right;

 }

</style>

</head>

<body>

<h2 class="right">Вариант2</h2>

<h2>Может, <span>друг</span> твой сам поторопился</h2>

<h2 class="center">И тебя <span id="purple">обидел</span> невзначай</h2>

<h2 class="right">Провинился <span>друг</span> и провинился</h2>

<h2>Ти ему <span id="fonts">греха</span> не поминай</h2>

<h1 class="right">Расул Гамзатов</h1>

</body>

</html>

Приложения:
Новые вопросы