Today Google Doodle from Moog Synthesizer

I examined today the Google Doodle of Moog Synth , dedicated to Robert Mug,

doodle

when I came across the following html code snippet:

 <w id=moogk0></w>
 <s id=moogk1></s>
 <w id=moogk2></w>
 <s id=moogk3></s>

(You can view the source code and do Ctrl + F, you will get it in the first search result).

I searched for the s and w tags, but did not find anything useful, except that the tag is ssometimes used to delete text, but now it's deprecated.

Obviously, Google will not use obsolete tags, but I think there is a lot more to it than plain HTML. Can anyone explain me the use of these tags? and how does the browser recognize them? and if the browser does not recognize them, what to use them?

+5
source share
3

.

HTML , , , . , , DOM.

CSS Javascript (getElementsByTagName getElementById ..).

, CSS Javascript - .

+6

(, div) .

+3

, , XML.

HTML-, , HTML .

With XML, data can be stored in separate XML files. This way you can focus on using HTML / CSS for display and layout, and make sure that changes to the underlying data will not require any changes to the HTML.

With a few lines of JavaScript code, you can read an external XML file and update the contents of the data on the Internet p.

+1
source

All Articles