Предмет: Информатика, автор: musafena

Просто перепишите текст с картинки без слова "Результат:" .Я за это даю 100 баллов!!!!!!!

Приложения:

Ответы

Автор ответа: asimigotov
0

Объяснение:

<html> <!-- Opening an html page -

<head>

<meta charset="utf-8" />

<title>My first HTML page</title><!-- Page title -->

<style>

body{

font-size: 14px;

color:#000

.content{

max-width:1000px;

margin: 0 auto;

background-color: #6578b1;

padding: 15px 25px;

.content h1{

color:#840000;

text-align:center;

border:1px solid #fff;

padding: 5px 0;

}

.content p{

color:#fff;

text-align: justify;

.content a{

color:#840000;

.content a:hover{

color: salmon

</style>

</head>

<body><!-- Html page body -->

<div class='content'>

<h1>Home page</h1><!--

<h*> This is the header inside the page there are h1, h2, h3, etc. -->

<p> <!-- <p> this is a Paragraph tag in the text -->

A very interesting text that everyone wants to read.

</p>

<p>

Here is a slightly less interesting text

</p>

<b> Bold text <b><br/>

<i> Italic text </i><br/>

<small> Small text </small><br/>

<a href=" http://miigaik.ru ">This is a link to the website miigaik.ru </a>

</div>

</body>

</html><! -- Closing the html page -

Похожие вопросы
Предмет: Информатика, автор: zylaevdan