Skip to content

learning progress #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
cc6b6c5
init html and csss
Oct 31, 2022
f8fd6ea
init prject
Oct 31, 2022
9ec5be4
semantical html
Nov 1, 2022
3ae4f38
finish course - note and semantic html
Nov 1, 2022
fe295c0
finish code challenge 1
Nov 1, 2022
e764f09
finish code challenge 2
Nov 1, 2022
db76bf4
finish code cha 2
Nov 1, 2022
c5ef753
finish course 024
Nov 1, 2022
b906282
finish course 025 combine selectors
Nov 1, 2022
aeb0b47
finish course 027 css color
Nov 1, 2022
0a5434f
finish course 028 pesudo classes
Nov 1, 2022
1ee98e0
finish course 029 pesudo classes
Nov 1, 2022
e62a2b5
finish course 031 select level
Nov 2, 2022
a342c91
finish code chanellege 01 in css
Nov 2, 2022
299a29e
boxmodel
Nov 3, 2022
6e41f31
using padding and margin
Nov 4, 2022
7ca5176
adding dimensions
Nov 4, 2022
37a5042
finish box model part
Nov 4, 2022
33c31dd
finish challenage 2
Nov 4, 2022
9830c91
absolute position
Nov 4, 2022
26c632f
debugging
Nov 5, 2022
b73473a
finish 03 css fundementals
Nov 5, 2022
710f114
start lecture 48
Nov 6, 2022
feb3a33
build up float layout
Nov 6, 2022
76e6c8b
finish code challenge1
Nov 6, 2022
9f997b9
start learning flex
Nov 6, 2022
fefa078
flex property
Nov 8, 2022
2f6e16d
use flex
Nov 8, 2022
2840945
placing items
Nov 9, 2022
76873e9
building css grid to our layout
Nov 9, 2022
838a4f6
finish 04 floats flex and css grid
Nov 9, 2022
1288365
implement images
Nov 10, 2022
9fbab0c
implement icons
Nov 10, 2022
a188a18
implementing shadows
Nov 10, 2022
d22322a
implementing border radius
Nov 10, 2022
94c8cd1
implementing visual hierachy
Nov 10, 2022
caf0259
start course 6
Nov 11, 2022
cf1dfaa
building accordion
Nov 11, 2022
5bcb5fa
building carousel
Nov 11, 2022
f33c834
building table
Nov 11, 2022
01537e9
building pagination
Nov 11, 2022
f16d0fd
building a web application layout
Nov 12, 2022
bc52289
finishe course 06
Nov 12, 2022
d8f7933
init omnifood project
Nov 12, 2022
3cdfc1c
test
Ashes814 Nov 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added final/.DS_Store
Binary file not shown.
Binary file added starter/.DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions starter/01-Test/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>我是你妈</title>
</head>
<body>
<h1>我是你妈</h1>
<p>你妈是我妈,我妈是你爹,你是我的爹</p>
</body>
</html>
13 changes: 13 additions & 0 deletions starter/02-HTML-Fundamentals/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blog</title>
</head>
<body>
<h2>BLOG</h2>
<a href="index.html">back</a>
</body>
</html>
55 changes: 55 additions & 0 deletions starter/02-HTML-Fundamentals/challenge.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Challenges</title>
<link href="stylec.css" rel="stylesheet" />
</head>
<div class="container clearfix">
<body>
<article>
<h2 class="title">Converse Chuck Taylor All Star Low Top</h2>

<img
class="part0"
src="img/challenges.jpg"
width="240px"
height="240px"
alt="图片炸了"
/>
<div class="part1">
<div class="little-row">
<p class="money"><b>$65.00</b></p>
<p class="fshi">Free shipping</p>
</div>
<div class="clear"></div>
<p>
Ready to dress up or down, these classic canvas Chucks are an
everyday wardrobe staple
</p>
<a class="more" href="#">More information &rarr;</a>

<div class="color-bars">
<div class="color-bar color-1">&nbsp</div>
<div class="color-bar color-2">&nbsp</div>
<div class="color-bar color-3">&nbsp</div>
<div class="color-bar color-4">&nbsp</div>
<div class="color-bar color-5">&nbsp</div>
<div class="color-bar color-6">&nbsp</div>
</div>
</div>
<div class="part2">
<h3 class="product-details">Product details</h3>
<ul class="details">
<li>Lightweight, durable canvas sneaker</li>
<li>Lightly padded footbed for added comfort</li>
<li>Iconic Chuck Taylor ankle patch</li>
</ul>
</div>
<button class="add-to-cart">Add to cart</button>
</article>
</body>
</div>
</html>
20 changes: 3 additions & 17 deletions starter/02-HTML-Fundamentals/content.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,17 @@ The Basic Language of the Web: HTML

Posted by Laura Jones on Monday, June 21st 2027

All modern websites and web applications are built using three fundamental technologies: HTML, CSS and JavaScript. These are the languages of the web.

In this post, let's focus on HTML. We will learn what HTML is all about, and why you too should learn it.



What is HTML?

HTML stands for HyperText Markup Language. It's a markup language that web developers use to structure and describe the content of a webpage (not a programming language).

HTML consists of elements that describe different types of content: paragraphs, links, headings, images, video, etc. Web browsers understand HTML and render HTML code as websites.

In HTML, each element is made up of 3 parts:

The opening tag
The closing tag
The actual element
You can learn more at the MDN Web Docs.

Why should you learn HTML?

There are countless reasons for learning the fundamental language of the web. Here are 5 of them:

To be able to use the fundamental web dev language
To hand-craft beautiful websites instead of relying on tools like Worpress or Wix
To build web applications
To impress friends
To have fun 😃

Hopefully you learned something new here. See you next time!

101 changes: 101 additions & 0 deletions starter/02-HTML-Fundamentals/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>HTML第一课:基础级别(嘿嘿)</title>
</head>

<body>
<header>
<h1>📘 The Code Magazines</h1>

<nav>
<a href="blog.html" target="_blank">Blog</a>
<a href="#" target="_blank">Challenage</a>
<a href="#" target="_blank">Flexbox</a>
<a href="#" target="_blank">CSS Grid</a>
</nav>
</header>

<article>
<h2>The Basic Language of the Web: HTML</h2>
<img src="img/laura-jones.jpg" alt="图片炸了" width="50" height="50" />
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
<img src="img/post-img.jpg" alt="图片炸了" width="500" height="200" />
<p>
All modern websites and web applications are built using three
<em>fundamental</em>
technologies: HTML, CSS and JavaScript. These are the languages of the
web.
</p>
<p>
In this post, let's focus on HTML. We will learn what HTML is all about,
and why you too should learn it.
</p>
<h3>What is HTML?</h3>
<p>
HTML stands for <b>H</b>yper<b>T</b>ext <b>M</b>arkup <b>L</b>anguage.
It's a markup language that web developers use to structure and describe
the content of a webpage (not a programming language).
</p>

<p>
HTML consists of elements that describe different types of content:
paragraphs, links, headings, images, video, etc. Web browsers understand
HTML and render HTML code as websites.
</p>
<p>In HTML, each element is made up of 3 parts:</p>
<ol>
<li>The opening tag</li>
<li>The closing tag</li>
<li>The actual element</li>
</ol>
<p>
You can learn more at the
<a href="https://www.baidu.com" target="_blank">MDN Web Docs.</a>
</p>
<h3>Why should you learn HTML?</h3>
<p>
There are countless reasons for learning the fundamental language of the
web. Here are 5 of them:
</p>

<ul>
<li>To be able to use the fundamental web dev language</li>
<li>
To hand-craft beautiful websites instead of relying on tools like
Worpress or Wix
</li>
<li>To build web applications</li>
<li>To impress friends</li>
<li>To have fun 😃</li>
</ul>

<p>Hopefully you learned something new here. See you next time!</p>
</article>
<aside>
<h4>Related posts</h4>

<ul>
<li>
<img src="img/related-1.jpg" alt="图片炸了" width="50" hight="50" />
<a href="#">How to Learn Web Development</a>
<p>By Jonas Schmedtmann</p>
</li>

<li>
<img src="img/related-2.jpg" alt="图片炸了" width="50" hight="50" />
<a href="#">The Unknown Powers of CSS</a>
<p>By Jim Dillon</p>
</li>

<li>
<img src="img/related-3.jpg" alt="图片炸了" width="50" hight="50" />
<a href="#">Why JavaScript is Awesome</a>
<p>By Matilda</p>
</li>
</ul>
</aside>
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
</body>
</html>
Loading