Вопрос задан 01.05.2019 в 04:56. Предмет Информатика. Спрашивает Самбурская Анастасия.

как создать таблицу html в блокноте напешите пожалусто код

0 0
Перейти к ответам

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

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Горин Геннадий.
Вух, ну если все правильно поняла, то вот
<html>
<head>
</head>
<body>
<table align=center width=90% border=1>
<tr align=center>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr align=center>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr rowspan=2 align=center>
<td colspan=2>1</td>
<td>1</td>
</tr>
<tr align=center>
<td colspan=2>1</td>
<td>1</td>
</tr>
</table>
</body>
</html>

0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

Creating an HTML Table in Notepad

To create an HTML table in Notepad, you can follow these steps:

1. Open Notepad: Open Notepad on your computer.

2. Write the HTML Code: Write the HTML code for the table. Here's an example of a simple HTML table:

```

Header 1 Header 2
Row 1, Cell 1 Row 1, Cell 2
Row 2, Cell 1 Row 2, Cell 2
```

This code creates a basic table with headers and cells.

3. Save the File: Save the file with an ".html" extension, for example, "mytable.html".

4. Open the File in a Web Browser: Open the saved HTML file in a web browser to view the table.

Additional Information

- HTML tables are created using the ``, `` (table row), `
` (table header), and `` (table data/cell) tags. - You can customize the table by adding attributes to the tags, such as border, width, cellpadding, cellspacing, etc.

By following these steps and using the provided HTML code, you can create a simple table in Notepad and view it in a web browser.

0 0

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика