Sunday 7 March 2021

HTML TUT-8 What Is Semantic Tags ?

What Is Semantic Elements?

Semantic Tag

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>segmantic Element</title>
  <!-- <link rel="stylesheet" href="/tut13.css"> -->
</head>
<style>
    p{colorblue;}
p{backgroundchartreuse;}
a{border-colorcrimson;}
</style>
<body>
    <summary>I have keys but no doors. 
        I have space but no room. You can enter but can’t leave. 
        What am I?
    </summary>
    
</body>

</html>


 

No comments:

Python if / else

 Python if / else a1 = int ( input (" Enter the number: \n ")) a2 = int ( input (" Enter the number: \n ")) a3 = int ( i...