Mostafijur Rahmanneptunecode.hashnode.dev·Sep 21, 2024Must-Know HTML Attributes for Every Web DeveloperIntroduction HTML is the backbone of any web page, providing the essential structure needed to display content. Whether you're a beginner or an experienced web developer, having a handy reference to key HTML attributes can be invaluable. In this blog...Discuss·33 readsHTML5
Ridwan Tajudeenridwantajudeent.hashnode.dev·Sep 4, 2024Understanding the DOMHave you been seeing this acronym DOM and wondered what it means, or do you know what it means but want to learn more about it? Then welcome to another episode of Ridwan’s Nugget. DOM (Document Object Model) is like a bridge that connects HTML to the...DiscussJavaScript
Gedeon Mabengigedeonmabengi.hashnode.dev·Aug 3, 2024Attributs HTML : les clés pour personnaliser vos élémentsLes attributs HTML sont de précieux outils qui vous permettent de modifier le comportement et l'apparence de vos éléments HTML. En leur attribuant des caractéristiques spécifiques, vous pouvez créer des pages web dynamiques et interactives. Découvron...Discuss2Articles1Week
Saurav Swainsauravswain.hashnode.dev·Jul 8, 2024Hidden Gems: 5 Overlooked HTML Tags or Attributes to Enhance Your Web Pages1. The <q\> tag <q> Hi 👋, my name is Saurav Swain </q> Browsers by default will generally surround text within the <q\> tag with quotation marks. see use case below 👇 2.The <ruby\>, <rt\>, and <rp\> tags The Ruby <ruby> HTML element represents sm...DiscussHTML5
Syed Aquib Alihadetan.hashnode.dev·Jun 1, 2024HTML AttributesHTML attributes provide additional information about HTML elements and help configure their behavior and appearance. They are included in the opening tag of an element and are made up of a name and a value pair, separated by an equal sign (=). The va...DiscussHTML5
Maxat Akbanovmaxat-akbanov.com·Apr 14, 2024Python OOP 101: Class vs Instance attributesIn Python, the main difference between class attributes and instance attributes involves the level at which these attributes are declared and how they are accessed within the class and its instances: Class Attributes: Class attributes are variables...DiscusspythonPython
Jalaj Singhaljalajsinghal3.hashnode.dev·Mar 6, 2024Images in HTMLImages in HTML In this post, we will learn about HTML images, how to add them to HTML, and how to use and implement them using examples. Earlier versions of websites just had text on them, which gave the impression that they were dull and uninteres...DiscussWeb Development
Jalaj Singhaljalajsinghal3.hashnode.dev·Feb 6, 2024Attributes and Elements in HTMLHTML Attribute: HTML attributes are special words that provide additional information about the elements; attributes are the modifiers of the HTML element. Each element or tag can have attributes, which define the behavior of that element. Attribu...DiscussAttributes
Suggu SandeepforSAP MDG | Team Blogssapmdg.hashnode.dev·Dec 7, 2023SAP MDG: Don't get confused in case of Attributes.In the case of SAP MDG Other than SAP MDG, suppose taking in SE11 - it will define properties Thank You,Suggu Sandeep.DiscussSAP MDG
Francesco Tusathinkobjectoriented.hashnode.dev·Nov 11, 2023Understanding Static Attributes and MethodsIn object-oriented programming languages, such as Java and C#, static attributes and methods establish class-level members independent of particular object instances and linked to the class as a whole. This article offers a basic overview of this con...Discuss·218 readsThe World of Classes and Objectsstatic