documenting my notes

This commit is contained in:
tomit4 2021-08-21 06:37:26 -07:00
commit 0379beff4d
28 changed files with 1639 additions and 0 deletions

23
html_notes.txt Normal file
View file

@ -0,0 +1,23 @@
#There are some interesting keyboard shortcuts that will help us write our html
#pages faster. Keep in mind that saving default index.html files, etc will also be helpful
#To create a standard html page, simply type:
html
#to get options in vs code, choose "html5", and you will get a basic html page
#putting after the meta name tag a generic css link as follows:
<link rel="stylesheet" href="styles.css">
#is pretty much standard
#and putting in a generic javascript file as follows:
<script src="script.js" defer></script>
# will create a link to a standard javascript file and the defer will make sure
#it is read after the html/css is first processed
#hitting a .class*2 will create
<div class="class"></div>
<div class="class"></div>
#while doing the same with #id*2 will create
<div id="id"><div>
<div id="id"><div>