diff --git a/enter/.obsidian/hotkeys.json b/enter/.obsidian/hotkeys.json index aa2c8b0..4cf00d6 100644 --- a/enter/.obsidian/hotkeys.json +++ b/enter/.obsidian/hotkeys.json @@ -110,5 +110,21 @@ ], "key": "U" } + ], + "omnisearch:show-modal-infile": [ + { + "modifiers": [ + "Alt" + ], + "key": "O" + } + ], + "omnisearch:show-modal": [ + { + "modifiers": [ + "Alt" + ], + "key": "V" + } ] } \ No newline at end of file diff --git a/enter/.obsidian/plugins/recent-files-obsidian/data.json b/enter/.obsidian/plugins/recent-files-obsidian/data.json index 6a0cc57..3988dd3 100644 --- a/enter/.obsidian/plugins/recent-files-obsidian/data.json +++ b/enter/.obsidian/plugins/recent-files-obsidian/data.json @@ -1,5 +1,17 @@ { "recentFiles": [ + { + "basename": "HTML & CSS", + "path": "Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md" + }, + { + "basename": "Quantum 101 - Alt. Resources", + "path": "Machine Tips (Quantum)/Resources/Quantum 101 - Alt. Resources.md" + }, + { + "basename": "Welcome to Quantum 101", + "path": "Machine Tips (Quantum)/Resources/Welcome to Quantum 101.md" + }, { "basename": "About terminal", "path": "Coding Tips (Classical)/Terminal Tips/About terminal.md" @@ -96,10 +108,6 @@ "basename": "Alt. Obsidian", "path": "Coding Tips (Classical)/Project Vault/Obsidian/Alt. Obsidian.md" }, - { - "basename": "Quantum 101 - Alt. Resources", - "path": "Machine Tips (Quantum)/Resources/Quantum 101 - Alt. Resources.md" - }, { "basename": "Journals & Publications", "path": "Machine Tips (Quantum)/Project Vault/Papers/Journals & Publications.md" @@ -156,10 +164,6 @@ "basename": "Optics", "path": "Machine Tips (Quantum)/Physics/Optics.md" }, - { - "basename": "Welcome to Quantum 101", - "path": "Machine Tips (Quantum)/Resources/Welcome to Quantum 101.md" - }, { "basename": "Particle Terms", "path": "Machine Tips (Quantum)/Physics/Particle Terms.md" @@ -195,10 +199,6 @@ { "basename": "Different Data Models", "path": "Coding Tips (Classical)/Project Vault/hi.mainsite/Current Occupations/Past/Windtelligent.ai/Intelligence/Different Data Models.md" - }, - { - "basename": "Intro to Multiple Qubit Gates", - "path": "Machine Tips (Quantum)/Resources/Code & Circuit Operations/Gates/Multiple Qubit Gates/Intro to Multiple Qubit Gates.md" } ], "omittedPaths": [], diff --git a/enter/.obsidian/workspace.json b/enter/.obsidian/workspace.json index 0b3ad28..957bcf9 100644 --- a/enter/.obsidian/workspace.json +++ b/enter/.obsidian/workspace.json @@ -4,19 +4,23 @@ "type": "split", "children": [ { - "id": "70774519492d5ae2", + "id": "0f154c8636233fb6", "type": "tabs", "children": [ { - "id": "a519155fdc75f4c0", + "id": "8c211cd1130a646c", "type": "leaf", "state": { - "type": "empty", - "state": {} + "type": "markdown", + "state": { + "file": "Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md", + "mode": "source", + "backlinks": false, + "source": false + } } } - ], - "stacked": true + ] } ], "direction": "vertical" @@ -51,7 +55,8 @@ } ], "direction": "horizontal", - "width": 200 + "width": 255.5, + "collapsed": true }, "right": { "id": "a4f595dc05b75a93", @@ -77,7 +82,9 @@ "type": "leaf", "state": { "type": "outline", - "state": {} + "state": { + "file": "Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md" + } } }, { @@ -86,6 +93,7 @@ "state": { "type": "outgoing-link", "state": { + "file": "Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md", "linksCollapsed": false, "unlinkedCollapsed": false } @@ -110,8 +118,10 @@ "audio-recorder:Start/stop recording": false } }, - "active": "28a54cc81af4607b", + "active": "8c211cd1130a646c", "lastOpenFiles": [ + "Machine Tips (Quantum)/Resources/Quantum 101 - Alt. Resources.md", + "Machine Tips (Quantum)/Resources/Welcome to Quantum 101.md", "Coding Tips (Classical)/Terminal Tips/About terminal.md", "Machine Tips (Quantum)/Math/Quantum Formalism.md", "Machine Tips (Quantum)/Math/Math terms & Probabilities.md", @@ -137,9 +147,7 @@ "Coding Tips (Classical)/Project Vault/hi.mainsite/Quantum Stuff.md", "Coding Tips (Classical)/Project Vault/hi.mainsite/Main Page.md", "Coding Tips (Classical)/Project Vault/Obsidian/Alt. Obsidian.md", - "Machine Tips (Quantum)/Resources/Quantum 101 - Alt. Resources.md", "Machine Tips (Quantum)/Project Vault/Papers/Journals & Publications.md", - "Coding Tips (Classical)/Terminal Tips/Servers/Databases/Tools & Tables/Notions about Notion.md", "Coding Tips (Classical)/Project Vault/Obsidian/imgFiles/Pasted image 20230828113948.png", "Coding Tips (Classical)/Project Vault/Comms/WRITTEN TEXT/E-Mail Settings", "Coding Tips (Classical)/Project Vault/Comms/RADIO/TALK WITH SOUND", diff --git a/enter/Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md b/enter/Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md index a5f6afd..b6c3c56 100644 --- a/enter/Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md +++ b/enter/Coding Tips (Classical)/Terminal Tips/Languages/HTML & CSS.md @@ -24,6 +24,10 @@ Stuff Goes Here. Leave the Credit in the blog text. +On a more serious note, HTML is used everywhere. HTML (**Hypertext Markup Language**) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. +Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document. + +HTML has been in use since 1991, but HTML 4.0 was the first standardized version where international characters were given reasonably complete treatment. When an HTML document includes special characters outside the range of seven-bit ASCII, there are two aspects should be taken into consideration: the information's integrity, and universal browser display. ```