Create a Sticky Social Media Bar using HTML and CSS

Yaswanth Varma
Updated on 22-Jan-2024 13:41:17

317 Views

Utilizing social media helps your internet business attract more clients. Any website can benefit greatly from social media buttons, which enable users to receive updates directly from the website. Additionally, a sticky social bar helps to boost visitors to your website and grows your social media following. In this article we will discuss how to use CSS to make a sticky social media bar without affecting the look and feel of your website. Several jQuery plugins are available for floating sidebars, however they could affect the speed and appearance of your website. We'll use CSS code to add an animated ... Read More

Minimize hamming distance in Binary String by setting only one K size substring bits

Disha Gupta
Updated on 22-Jan-2024 13:18:23

94 Views

Hamming distance between two strings of equal length is the number of all the positions at which a different value exists at the corresponding position of the other string. We can understand this with an example given below − S = “ramanisgoing” T = “dishaisgoing” Here, 5 is the hamming distance between two strings S and T as raman and disha are two words that make a difference in the strings to become equal. Problem Statement However, in this problem, we need to find the hamming distance between two strings that contain binary numbers only. One string would be ... Read More

Lexicographically largest possible by merging two strings by adding one character at a time

Disha Gupta
Updated on 22-Jan-2024 12:49:45

220 Views

Lexicographic means the algorithm by using which we can arrange given words in alphabetical order, the same concept which is used in dictionaries. The largest possible string that we would get by merging two strings taking one-character element at a time so that the order is lexicographic can be obtained by arranging alphabets in decreasing order or descending order keeping the sequence of elements in mind. Problem Statement Now, in this problem, we need to find lexicographically the largest possible string we get by merging two given strings. To understand this problem, we should know the basic concept we use ... Read More

Check if two arrays of strings are equal by performing swapping operations

Disha Gupta
Updated on 22-Jan-2024 11:50:18

176 Views

The arrays of strings are a 2-dimensional array that stores characters in it. In C++ language we have an inbuilt function, with syntax − Syntax swap (first_datatype, second_datatype) which is used to perform swap operations on two elements, that is, exchange the values they carry. In the following, we are also supposed to do some exchange in positions of the elements of the string to get the expected output. However, we can get our output in a much easier way. Problem Statement Now, in this problem, we are provided with two arrays of strings (meaning arrays or ... Read More

Design a calendar using HTML and CSS

Yaswanth Varma
Updated on 22-Jan-2024 11:44:44

1K+ Views

There are so many uses for calendars that are really beneficial. They frequently make appointments and schedule meetings in our email accounts. A fully functional calendar does not have a default one, like with some HTML inputs, thus you will need to create one yourself using HTML and CSS. Before we dive into the article on the creation of the calendar using HTML and CSS, First, we know about the HTML tag, which will be used to create the structure of the calendar. HTML tag The HTML tables allow web authors to arrange data like text, images, links, ... Read More

Design a Rotating card effect using HTML and CSS

Yaswanth Varma
Updated on 22-Jan-2024 11:42:20

212 Views

The effect on cards that will spin slightly when you move your mouse over them is known as rotating cards. Hovering over the cards will reveal any information, links, or images that are present on them. Let’s dive into the article where we are going to design a rotating card effect using HTML and CSS, in which we are going to use the HTML tag. Before we jump into the article, let’s have a quick look at the tag. HTML tag The tag is also known as the Division tag. HTML uses the tag to ... Read More

Different ways to apply colors in an HTML document

Yaswanth Varma
Updated on 22-Jan-2024 11:40:16

118 Views

A website or application with more color is more visually appealing than one with only black and white. We will go over each method of applying color to HTML texts in this article. There is no specific tag for applying colors in HTML document, just like for other HTML tags. On the other hand, you can add color and appeal to a certain element by utilizing the style attribute. You can specify colors on page level using tag or you can set colors for individual tags using bgcolor attribute. The tag has following attributes which can be used ... Read More

How to add a rounded border with CSS?

Yaswanth Varma
Updated on 22-Jan-2024 11:25:12

93 Views

Using CSS, we can build a visually appealing HTML document. Some elements or images may have rounded borders, which is something we might want to consider while building a web page. With this, we can use the CSS border-radius property. Because the rounded borders refer to security, and dependability—all of which improve user experience—we might refer to them as "friendly rectangles" a lot. Let’s dive into the article to learn more about adding a rounded border with CSS. Before that, we will have a quick look at the CSS border-radius property. CSS border-radius property An element's outer border edges can ... Read More

Difference between Transitional and Strict doctype

Yaswanth Varma
Updated on 19-Jan-2024 18:58:19

77 Views

HTML documents employ DOCTYPE declarations to identify the HTML version being used and to instruct web browsers to render content in a variety of ways. You must begin each HTML document you code with a declaration. just before the tag is where the doctype is declared. Let’s dive into the article to learn more about the difference between transitional and strict doctype. The two primary DOCTYPE declaration are "Transitional" and "Strict, " with each providing a different function in terms of describing how a web page should be read and produced. Before that let’s have a quick view ... Read More

What is the full form of MBBS?

Shirjeel Yunus
Updated on 19-Jan-2024 18:51:46

59 Views

What is MBBS? The full form of MBBS is Bachelor of Medicine, Bachelor of Surgery (Medicinae Baccalaureus, Baccalaureus Chirurgiae in Latin). MBBS is an undergraduate course which can be pursued by those students who have a dream of becoming an MBBS doctor. The duration of the course is five years. Candidates whose age is 17 years and who have completed their 12th grade can pursue the MBBS course. The subjects taken in the 12th grade should be Physics Chemistry, Biology(PCB). Reasons for Pursuing MBBS Course There are many reasons for pursuing the MBBS course and some of them are given ... Read More

Advertisements