I am currently working on building a website for educational purposes. My goal is to have a "Follow us" h2
heading with YouTube and Twitter icons positioned on the right side of the page.
If the webpage size reduces or if accessed on a mobile device, I want these elements to move under the menu.
<!DOCTYPE html>
<html>
<!--
Meta data and stylesheet link
-->
<head>
<meta charset="UTD-8" >
<meta name="description" content="Tech Lovers Youtube Channel" >
<meta name="keywords" content="HTML,CSS,XML,Javascript">
<meta name="author" content="Owais Qureshi">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title> Tech Lovers | Welcome</title>
<link rel="stylesheet" href="../CSS/Style.css">
</head>
<body>
<header>
<!--
top logo with heading
-->
<div id="logo" class="container">
<img src="../Media/IMG/logo.jpg" alt="tech_logo">
<h1>Tech Lovers</h1>
</div>
<!--
menu
-->
<nav id="menu" class="container">
<ul>
<li><a href="../HTML/index.html">Home</a></li>
<li><a href="../HTML/Blog.html">Blogs</a></li>
<li><a href="../HTML/About us.html">About Us</a></li>
</ul>
</nav>
<!--
i want this on right side. -->
<div id="follow_us" class="container">
<h2>Follow us</h2>
<a href="https://www.youtube.com/channel/UCsxqKI-iEjmtfK5mcjqTTuA">youtube_img_icon</a>
<a href="https://twitter.com/techlover771">twitter_img_icon</a>
</div>
</header>
</body>
</html>