dir is a HTML tag to list directory titles. It is used in HTML 4.01.
dir="rtl" basically writes the text right-to-left. That's what "rtl" stands for: right-to-left.
so for example
......
<em>
<p dir="rtl">Hello!</p> </em>
......
That will write "Hello!" from the right side of the screen.
no clue what >יזבל is... sorry
Answer:
1. Tabs: allows you to drag the window to a new location
Explanation: Tab is the key that is used to switch between different windows or websites that are opened at a time. This can be done by pressing Ctrl+Tab
2. Status Bar: displays whether the Web page is secure or not
Explanation: Status bar is used to show the status or information related to that page. Like Information related safety precaution.
3. Title Bar: allows you to quickly move between different Web sites
Explanation: Title bar consist of the name of different websites that are open at particular time. This shows at the top of the browser. We can quickly move on different websites using title of website.
4. Bookmarks: save Web addresses so you can return to them quickly
Explanation: Bookmarks are the pages that we save in bookmark menu, to re-open the page whenever its needed.
D. It’s a sketch. That is, if you talking about, an art piece.
Answer:
Explanation:
The following Python code asks the user for inputs for the name to remove and add in the set. It then tries to remove the given name from the list. If it fails it prints out to the user saying that the name does not exist. If it does exist then it removes the name and adds the new name. Finally it prints out the current list of names.
male_names = {'oliver', 'Declan', 'Henry'}
name_to_remove = input("Enter name to remove: ")
name_to_add = input("Enter name to add: ")
try:
male_names.remove(name_to_remove)
male_names.add(name_to_add)
except:
print("Name that you are trying to remove does not exist")
print("List of Names: ")
print(male_names)