V
V
Vladislav Dovgun2017-09-29 16:10:23
JavaScript
Vladislav Dovgun, 2017-09-29 16:10:23

Map, is this content?

I'm building a website right now, and an interesting question arose. Is the map part of the content? Well, where is the best place to put it? In the main tag (where all the site content is) or footer ?
PS At the bottom is a map, followed by a small block with contacts.
PSS I type semantically, namely with the use of tags for their intended purpose, but I don’t even know where to shove the map.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander, 2019-06-19
@Arhangel_one

// Закрытие модального окна при нажатии вне окна
$(".modal").bind("click", function (e) {
    var $el = $(e.target);
    if ($el.is(".modal-form") || $el.parents('.modal-form').length) return;
    $(".modal").fadeOut('fast');
})

P
Pavel Kornilov, 2017-09-29
@VladDevelop

Never asked this question, but I think that here the answer is not unambiguous.
If the map illustrates the content, then it needs to be placed in the content, and if it is, say, a route to the company, then it is better to drive such information into the footer.
Although the maps make it very heavy to load, and the footer is loaded on every page.

Z
zorca, 2017-09-29
@zorca

Content is usually a dynamically changing part of the site. If the map is present on all pages, then you can place it outside the content part, in the footer, for example, or in a separate section.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question