Tech Study

How to write bold text using HTML tags

Introduction

How to write bold text using HTML tags

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>www.techstudy.org
</title>
</head>
<body>
<p>"techstudy" is normal text & <b>"The complete debugging solution"</b> is bold text.
</body>
</html>

Result

How to write bold text using HTML tags
How to write bold text using HTML tags

TaggedHow to write bold text using HTML tags

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more