Posts

Showing posts from December, 2020

Which HTML tag is used to give strikethrough effect to text?

 Two HTML tags are available to give strikethrough effect to text. 1. <s> The   <s>   tag specifies text that is no longer correct, accurate or relevant. The text will be displayed with a line through it. For example, you have seen product prices strike out during Sale period to reflect discounted price. Sale Price Rs. <s>100</s> 80 Output: Sale Price Rs. 100 80 2.  <del> <del> tag also works in same manner. Sale Price Rs. <del>100</del> 80 Output: Sale Price Rs. 100 80

HTML | frameset Tag

Image
In this tutorial, you will learn how to divide browser window into multiple sections with each section having its own content. HTML <frameset> Tag The <frameset> tag in HTML is used to define the frameset. The <frameset> element contains one or more frame elements. Syntax: <frameset cols = "pixels|%|*"> Attributes: cols : The cols attribute is used to create vertical frames in web browser. This attribute is basically used to define the no of columns and its size inside the frameset tag. rows : The rows attribute is used to create horizontal frames in web browser. This attribute is used to define no of rows and its size inside the frameset tag. Value of cols and rows can be provided in pixels, % or *. Creating Vertical Frames To create a set of vertical frames, we need to use the frameset element with the cols attribute. The cols attribute is used to define the number and size of columns. We have three files to display in different sections vertically.

Copy, Move and Delete files with PowerShell

Image
In this article, let me show you how you can use PowerShell to copy, move and delete files. Before we go through these commands, let me show you how to navigate between different directories/folders. How to change the directory (folder) in Command Prompt (CMD) CD (Change Directory): This command enables you to change the current directory.  When you need to go one folder up, use the "cd.." command. Let’s assume that you want to go back to the Windows folder. Type “cd..” and press Enter on your keyboard. cd takes you to the top of the directory tree when you pass " \ " after it. In this case, to the “C:” drive. If you need to go to a specific folder from this drive run the command "CD Folder". for example, When you need to access the cstutorials folder located in "C:" type "cd cstutorials" as shown below, and then press Enter on your keyboard. CD cmdlet is alias for set-location. you can use set-location also. How to create a new directo