Write a program that lets you know if you can have a key or not, based on your role at the school.
First ask for the user’s role at the school. They can be a student, administrator, or a teacher. (And remember that capitalization is important! ‘Student’ is not the same as ‘student’.)
Example 1: Administrator or Teacher
For example, if this was the input:
Are you an administrator, teacher, or student?: teacher
This should be the output:
Administrators and teachers get keys!
Example 2: Student
And if this was the input:
Are you an administrator, teacher, or student?: student
This should be the output:
Students do not get keys!
(Note: You should also be able to handle a situation where the user enters a value other than administrator, teacher or student and tell them they must be one of the three choices!)
Example 3: Other
If they input anything else:
Are you an administrator, teacher, or student?: secretary
This should be the output:
You can only be an administrator, teacher, or student!
HTML-код:
<!DOCTYPE html>
<html lang=»en»>
<head>
<meta charset=»UTF-8″>
<title>Достопримечательность</title>
</head>
<body>
<h1>Памятник огурцу в беларусском городе Шклов</h1>
<img src=»https://городок-ок.рф/wp-content/uploads/pamyatnik-ogurcu-v-olshanah.jpg» alt=»Памятник огурцу»>
<p>Памятник огурцу</p>
<p>Памятник огурцу установлен в честь большого урожая огурцов в каком-то там году</p>
</body>
</html>
Объяснение:
<!DOCTYPE html> — обозначаем данный документ как html
<html lang=»en»> — ставим английский язык документа
<head> — в этом блоке размещаются все метатеги и дополнительные, например, как title, который устанавливает заголовок страницы. Его вы видите в открывшейся вкладке
<body> — в этом блоке вы размещаете весь контент, который отобразится на странице.
ТЕГИ:
h1 — заголовок
img — изображение
p — абзац, параграф
Как запустить:
На рабочем столе создайте документ «index.html», поместите туда html-код и кликните по файлу дважды. Чтобы отобразить изображение нужно интернет-соединение.