at master 1.4 kB view raw
1<html lang="en"> 2 <head> 3 <link rel="stylesheet" href="styles.css"> 4 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <title>My Website</title> 8 </head> 9 <body> 10 <div id="headers"> 11 <div id="main"> 12 <a class="header" href="index.html"> 13 Home 14 </a> 15 <span> 16 <a class="header" href="projects.html"> Projects </a> 17 </span> 18 <span> 19 <a class="headerselected" href="blog.html"> Blog </a> 20 </span> 21 </div> 22 </div> 23 24 <div id="main"> 25 <div> 26 <a href="blog/Making_a_video.html"> 27 <div class="subheader"> 28 My video making process 29 </div> 30 <div class="content" id="date"> 31 10/28 - 2020 32 </div> 33 <div class="content"> 34 Making a youtube video for me is a pretty straight forward process 35 and it has stayed the same pretty much sin... 36 </div> 37 </a> 38 </div> 39 </div> 40 </body> 41</html>