HSHarshita Singhintechypandaa.hashnode.dev·Jul 24, 2022 · 1 min readMarkdown(MD)Markdown is basically a text to HTML conversion tool for web writers. Markdown generally allow us to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML(or XHTML). John Gruber and Aaron Swartz crea...00
HSHarshita Singhintechypandaa.hashnode.dev·Jul 22, 2022 · 1 min readA brief documentation about CSS SelectorsCSS selectors are used to target the HTML elements whose property will be set. Selectors make it easy to target single/multiple HTML elements. p{ color: black; } p->selector color->property black->value Types for CSS selectors : CSS Element Selector...01I