This contains pretty much what you need:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>The Page Title</title>
</head>
<body>
<h1>First paragraph</h1>
<p>This is a paragraph of text.</p>
<h2>Second level paragraph</h2>
<p>
Here is an unordered list of options:
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Here is another unordered list of options:
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Here is an ordered list of options:
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
</p>
<h4>Third level</h4>
</body>
</html>
It would be called a link. Connection might work as well.
Answer: Lua programming
Explanation: i hope im right ?
Answer:
grade = input("Enter grade")
def add(grade):
if grade == 9:
print("Not in High School Freshman")
elif grade == 10:
print("In High School")
print("somophone")
elif grade == 11:
print("in High School")
print("Junior")
elif grade == 12:
print("in High School")
print("Senior")
else:
print("Grade Not Accepted:")
return 0;
add(11)
Output:
Enter grade 11
in High School
Junior
Process finished with exit code 0
Explanation:
Firstly remember that this is a function, and not a program. Hence, you need to call the function to test it. A python program is interpreted line by line, Hence, we can test a function as well. Here we input a grade, and through the function find the details related to it and the print it out, which is clearly explained through the definition of the function.