“Основной шаблон” Ответ

шаблон

BOILERPLATE CODE

In computer programming, boilerplate code—or simply, boilerplate—are sections
of code that are repeated in multiple places with little to no variation. When
using languages that are considered verbose, the programmer must write a lot 
of boilerplate code to accomplish only minor functionality.
Heckar

Основной шаблон

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
Solstice

Основная HTML Coilerplate

<!DOCTYPE html>
<html>
  <head>
    
  </head>
  <body>
    
  </body>
  <html>
Glorious Gannet

Ответы похожие на “Основной шаблон”

Смотреть популярные ответы по языку

Смотреть другие языки программирования