To skip a line, then write the rest like this!
See? Good spacing, right?
It is an html web page hope it helps
Answer:
Selection control structure
Explanation:
This is often referred to as if-conditional statement;
This condition tests for a condition and performs a sequence of operation depending on the result of the condition;
Take for instance, the following program written in python
<em>x = int(input("enter any number: "))</em>
<em>if x < 0:</em>
<em> print("Yes")</em>
<em>else</em>
<em> print("No")</em>
<em />
The above checks if the input number is less than 0,
If the condition is true, it prints Yes
If otherwise, it prints No