Looking for Веб-програмування та хмарні технології test answers and solutions? Browse our comprehensive collection of verified answers for Веб-програмування та хмарні технології at exam.nuwm.edu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
<!DOCTYPE html><html lang="uk"><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>Практика HTML, CSS, Javascript</title> <style> .box{ background: yellow; border-radius: 50% 0 50% 0; width: 400px; height: 320px; line-height: 320px; font-size: 20pt; color: orangered; text-align: center; text-transform: uppercase; font-weight: bold; } </style></head><body> <div id="lemon1" class="box"></div> <div id="lemon2" class="box"></div> <script> ... </script></body></html>Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб з використанням Javascript вписати в середину тегу <div> з ідентифікатором "lemon2" текст "Лимон":
-Для зміни назви гілки репозиторію на main використовується команда:
<!DOCTYPE html><html lang="uk"><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>Практика HTML, CSS, Javascript</title> <style> .box{ background: yellow; border-radius: 50% 0 50% 0; width: 400px; height: 320px; line-height: 320px; font-size: 20pt; color: orangered; text-align: center; text-transform: uppercase; font-weight: bold; } </style></head><body> <div id="lemon1" class="box"><p>Лимон1</p></div> <div id="lemon2" class="box"><p>Лимон2</p></div> <script> ... </script></body></html>Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб з використанням Javascript вивести в консоль текст, що міститься в тезі <div> з ідентифікатором "lemon1":
Для перегляду статусу робочого дерева репозиторію використовується команда:
main.css.box { background: yellow; border-radius: 50% 0 50% 0; width: 400px; height: 320px; line-height: 320px; font-size: 20pt; color: orangered; text-align: center; text-transform: uppercase; font-weight: bold;}layout.pugdoctype htmlhtml(lang='uk') head meta(charset='utf-8') title= title link(rel='stylesheet', href='/stylesheets/main.css') body block content index.pugextends layoutblock content div(id='lemon', class='box') p #{sample_text1} #{sample_text2} //script. document.getElementById('lemon').textContent='Лимони';index.js'use strict';var express = require('express');var router = express.Router();router.get('/', function (req, res) { res.render('index', {sample_text1: 'Лимон1', sample_text2: 'Лимон2'});});module.exports = router;Для наведеного вище коду вкажіть текст, який у Простому веб-застосуванні Node.js Express 4 Visual Studio 2022 буде вписано в середину тега p, який розміщений у тезі div з ідентифікатором "lemon":
<!DOCTYPE html><html lang="uk"><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>Практика HTML, CSS, Javascript</title> <style> .box{ background: yellow; border-radius: 50% 0 50% 0; width: 400px; height: 320px; line-height: 320px; color: orangered; text-align: center; text-transform: uppercase; font-weight: bold; } </style></head><body> <div id="lemon1" class="box"><p>Лимон1</p></div> <div id="lemon2" class="box"><p>Лимон2</p></div> <script> ... </script></body></html>Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб з використанням Javascript задати розмір тексту 20px для тегу <div> з ідентифікатором "lemon1":
main.css.box { background: yellow; border-radius: 50% 0 50% 0; width: 400px; height: 320px; line-height: 320px; font-size: 20pt; color: orangered; text-align: center; text-transform: uppercase; font-weight: bold;}layout.pugdoctype htmlhtml(lang='uk') head meta(charset='utf-8') title= title link(rel='stylesheet', href='/stylesheets/main.css') body block content index.pugextends layoutblock content div(id='lemon', class='box') p #{sample_text1} #{sample_text2} script. document.getElementById('lemon').textContent='Лимони';index.js'use strict';var express = require('express');var router = express.Router();router.get('/', function (req, res) { res.render('index', {sample_text1: 'Лимон1', sample_text2: 'Лимон2'});});module.exports = router;Для наведеного вище коду вкажіть текст, який у Простому веб-застосуванні Node.js Express 4 Visual Studio 2022 буде вписано в середину тега p, який розміщений у тезі div з ідентифікатором "lemon":
<!DOCTYPE html><html lang="uk"><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>Практика HTML, CSS, Javascript</title> <style> .box { background: yellow; border-radius: 50% 0 50% 0; width: 400px; height: 320px; line-height: 320px; font-size: 20pt; color: orangered; text-align: center; text-transform: uppercase; font-weight: bold; } </style></head><body> <div id="lemon1" class="box"></div> <div id="lemon2" class="box"></div> <script> ... </script></body></html>Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб з використанням Javascript вписати в середину тегу <div> з ідентифікатором "lemon2" текст "Лимон":
main.css.box { background: yellow; border-radius: 50% 0 50% 0; width: 400px; height: 320px; line-height: 320px; font-size: 20pt; color: orangered; text-align: center; text-transform: uppercase; font-weight: bold;}layout.pugdoctype htmlhtml(lang='uk') head meta(charset='utf-8') title= title link(rel='stylesheet', href='/stylesheets/main.css') body block content index.pugextends layoutblock content div(id='lemon', class='box') p #{sample_text} //script. document.getElementById('lemon').textContent+='Лимон2';index.js'use strict';var express = require('express');var router = express.Router();router.get('/', function (req, res) { res.render('index', {sample_text: 'Лимон1'});});module.exports = router;Для наведеного вище коду вкажіть текст, який у Простому веб-застосуванні Node.js Express 4 Visual Studio 2022 буде вписано в середину тега p, який розміщений у тезі div з ідентифікатором "lemon":
Для створення файлу package.json проєкту веб-застосування Node.js використовується команда (необхідно залишити інформацію щодо налаштування проєкту по замовчуванню):
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!