this repo has no description

day2

+73 -1
.DS_Store

This is a binary file and will not be displayed.

image.jpg intro to html/image.jpg
+73 -1
intro_to_html.html intro to html/intro_to_html.html
··· 2 2 <html lang="en"> 3 3 <head> 4 4 <title>This is my website Title</title> 5 + <meta charset="UTF-8" /> 6 + <meta name="viewport" content="width=device-width initial-scale=1.0" /> 7 + <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=default"></script> 5 8 </head> 6 9 7 10 <body> ··· 9 12 <h1 id="top">^_^</h1> 10 13 <h2>welcome to website.com</h2> 11 14 <p title="muh title"> 12 - this is a website where I can do website things on the internet. 15 + this <strong>is</strong> a <b>website</b> where I can do 16 + <i>website</i> things <em>on</em> the <mark>internet</mark>. 13 17 </p> 14 18 <hr /> 15 19 <h2>this is a section</h2> ··· 40 44 <ol> 41 45 <li>mmatt.net</li> 42 46 <li>teal.town</li> 47 + <ul> 48 + <li>teal.fm</li> 49 + </ul> 43 50 <li>opn.haus</li> 44 51 <li>are.na</li> 45 52 </ol> 46 53 47 54 <br /> 55 + <br /> 56 + 57 + <table border="1px"> 58 + <thead> 59 + <tr> 60 + <!-- <th>hello</th> 61 + <th>world</th> --> 62 + <th colspan="2">Hello World</th> 63 + </tr> 64 + </thead> 65 + <tbody> 66 + <tr> 67 + <!-- <td>so true</td> --> 68 + <td rowspan="2">so true</td> 69 + <td>wow</td> 70 + </tr> 71 + <tr> 72 + <!-- <td>omg...</td> --> 73 + <td>crazy</td> 74 + </tr> 75 + </tbody> 76 + </table> 77 + 78 + <p>muh &euro; and muh &dollar;</p> 79 + <p>&#192;</p> 80 + <p> 81 + &#200; &#128514; &#128514; &#128514; &#128514; &#128514; &#128514; 82 + &#128514; &#128514; &#128514; &#128514; &#128514; &#128514; &#128514; 83 + &#128514; 84 + </p> 85 + <div>\( \frac{-b &plusmn; \sqrt{b^2-4bc}}{2a} \)</div> 86 + $$ \frac{-b &plusmn; \sqrt{b^2-4bc}}{2a} $$ vas 87 + <br /> 88 + $$ \sum_{i=0}^n a^i = \frac{a^{n+1}-1}{a-1} {a \neq 1} $$ 89 + <br /> 90 + 91 + <video width="200" controls> 92 + <source 93 + src="https://wh9xsi1isi.ufs.sh/f/3pCuYtORE70iFh1vC2kQTmgCPNMpYynkzK4WXJelbq527Zjo" 94 + type="video/webm" 95 + /> 96 + </video> 97 + 98 + <br /> 99 + 100 + <audio controls> 101 + <source 102 + src="/Volumes/Airport/media/Music/Caroline Polachek - Desire, I Want To Turn Into You Everasking Edition/14 Spring Is Coming With A Strawberry In The Mouth.flac" 103 + type="audio/flac" 104 + /> 105 + </audio> 106 + 107 + <br /> 108 + 109 + <iframe 110 + width="450" 111 + height="322" 112 + src="https://www.youtube-nocookie.com/embed/UNYqwpx7Cys" 113 + title="Music" 114 + frameborder="0" 115 + allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" 116 + referrerpolicy="strict-origin-when-cross-origin" 117 + allowfullscreen 118 + ></iframe> 119 + 48 120 <br /> 49 121 50 122 <a href="https://mmatt.net" target="_blank">this website is neat!</a>