How to Check If Hard Drive is SSD or HDD in Windows 10

Ever wondered how to check the type of Hard Drive installed on your computer. Here, we will see two different methods to check if Hard Drive is SSD (Solid State Drive) or HDD (Hard Disk Drive) in windows 10.

Method 1: Using Disk Defragmenter/Windows Drive Optimizer

  • Type 'Defrag' in the search bar of the start menu and select "Defragment and Optimize Drives - App".

HTML - Horizontal Line

Horizontal line:

  • A horizontal line in HTML is defined by using the tag <hr>. Here hr stands for a horizontal rule.
  • <hr> tag is used to insert a thematic break in an HTML page or to separate the contents on the page.
  • <hr> tag is an empty tag that doesn't have a closing/end tag.
  • It comprises of the below attributes

HTML - Images

  • HTML <img> tag is used to display  images in the web page.
  • The images are just linked, not inserted into the web page. The <img> creates a holding space for the image.
  • The <img> tag is an empty tag that doesn't have a closing tag. It contains only attributes.
  • The required attributes of the <img> tag are
    • src - Specifies the path of the image
    • alt - Specifies alternate text for the image
      <img src="url" alt="alternate-text">

HTML - Text Formatting

Text Formatting:

  • In HTML, we have various elements to format text with special meaning. Such various elements are
    • Font <font>
    • Font Styles
    • Font Effects
Font <font> Element:
  • It defines the appearance of text on the web page by changing the font, size, and color.

HTML - Lists

Lists:

  • HTML List is used for grouping a set of related items in a list on the webpage.
  • In HTML, we have three different methods of specifying list information.
    • Ordered lists <ol>
    • Unordered lists <ul>
    • Description lists <dl>

HTML - Blockquotes

Blockquotes:

  • The Blockquote <blockquote> tag defines the content from another source with indentation.
  • The Blockquote will have a line break before and after the content by default.
  • URL of the source content can be given using the cite attribute and text representation can be given using the <cite> element.
  • For Short or Inline quotes, we can use the <q> tag.

HTML - Paragraphs

Paragraphs:

  • In HTML, the default paragraph defined in source code is ignored and it will be presented in a single block.
  • To add a manual paragraph, we can use the <p> tag with align attribute left, right, justify.


     <p align="center">paragraph goes here</p>

  • The paragraph defined using <p> will always start on a new line and browsers will automatically add a white space before and after a paragraph on the web page.

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...