<nav> ... </nav>


يحتوي على المحتوى الرئيسي والفريد للصفحة.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Inline CSS Navigation Example</title>

</head>

<body>

<nav style="background-color: #333; padding: 10px;">

<a href="#" style="color: #fff; text-decoration: none; margin-right: 15px;">Home</a>

<a href="#" style="color: #fff; text-decoration: none; margin-right: 15px;">About</a>

<a href="#" style="color: #fff; text-decoration: none; margin-right: 15px;">Services</a>

<a href="#" style="color: #fff; text-decoration: none;">Contact</a>

</nav>

</body>

</html>

Inline CSS Navigation Example