-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>websiteaday</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div style="text-align: right;">
<a href="open.html">Home</a>
<a href="day2.html">day2</a>
</div>
<div style ="text-align: center; margin: 0 0 80px;">
<h1>The Next Day</h1>
<p>Here's what I learned today</p>
</div>
<!-- adding hotlinks and images -->
<p>Every day I'll post a new site including new stuff I learned going through <a href="https://www.learnenough.com/"> Michael Hartle's tutorial</a>. At the same time, I'm putting <span style="font-style: normal; font-size:24px; font-weight:bold; color:#ff000;"> freshly made bread</span> in the over. That means I only have 30 mins to build this site every morning while the dough is cooking, plus a bonus 15 minutes with the lid off the Dutch oven. </p>
<img src="images/bread.jpg" alt="baked bread" height="200px" style="margin: 40px 30px 20px 10px;">
<p> At the end, I'll have practiced new CSS and HTML, plus command line, Git, VIM and text editors. Plus I'll have new bread.</p>
</div>
<h2>This is the first day</h2>
<tr>Basics on using Git and GitHub</tr>
<table>
<tr>
<th>git init</th>
<th>git add -A</th>
<th>git commit -m "fillin"</th>
<th>git remote add origin repo url from github</th>
<th>git push -u origin main</th>
<th>git push</th>
</tr>
</table>
<img src="https://cloud-6c19a1oiz-hack-club-bot.vercel.app/0screenshot_2024-06-11_at_5.39.37_am.png" alt="gitflow" height="200px" style="margin: 40px 30px 20px 10px;">
</body>
</html>