Attributes
Are used to add extra property of the tag so that the tag can server more in presenting the kind of content that the page should have. some of the attributes are
- Class: – it is one of the attribute of a tag that could help us to identify element and work with the element whatever action that we want to work on like CSS.
- Id: — it is another attribute which has the same purpose as class. But the application of id is unique, and it is going to be associated uniquely one time in html document.
<!DOCTYPE html>
<html>
<head>
<title>Your Future Tech Resource</title>
<link rel="stylesheet" href="style.css">
<link id="altmetric-embed-css" rel="stylesheet" type="text/css" href="https://d1bxh8uas1mnw7.cloudfront.net/assets/embed-59614f5c46b49b21eeef3bb28c4fb38d1e7069e8d014752fcb66e84942556802.css">
<meta name="author" content="Degu, DA">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="My personal website">
<script id="altmetric-embed-js" src="https://d1bxh8uas1mnw7.cloudfront.net/assets/altmetric_badges-26c2366af6fbe8409157ffb0e7a7fe7cd193aa7c285b244ea05f846de0b1dfd3.js"></script>
</head>
<body>
<h1>Programming Language</h1>
<div class = "main-container">
<p>This is a course mainly discussing about the <strong>Programming</strong> language.</p>
<p> More Access <a href="https://degutechblog.com/">Tech Blog</a> </p>
</div>
<h2> List of Programming Language</h2>
<ol id="prog_course_list">
<li>C++</li>
<li>Java</li>
<li>C#</li>
</ol>
</body>
</html>
Pages: 1 2