Skip to content
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

init #16

Open
wants to merge 53 commits into
base: master
Choose a base branch
from
Open

init #16

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
aea0fac
Topics related on CSS and CSS colors
Dathasai1234 Jul 2, 2022
de6f980
Types of Boxes Explained
Dathasai1234 Jul 3, 2022
0ea3390
Positioning (absolute and relative)
Dathasai1234 Jul 3, 2022
14557fd
Pseudo elements
Dathasai1234 Jul 4, 2022
91299a5
Section 3 initial commit
Dathasai1234 Jul 4, 2022
168ff35
Floats Layout
Dathasai1234 Jul 4, 2022
216668d
Clearing Floats
Dathasai1234 Jul 4, 2022
532e149
box-sizing - border-box
Dathasai1234 Jul 4, 2022
8a43f15
FlexBox introduction
Dathasai1234 Jul 4, 2022
8120332
FLEXBOX part1
Dathasai1234 Jul 4, 2022
dc4f006
init
Dathasai1234 Jul 4, 2022
0a57877
FLEXBOX part2
Dathasai1234 Jul 4, 2022
7d57958
inits
Dathasai1234 Jul 4, 2022
1412cdb
Grid Introduction
Dathasai1234 Jul 4, 2022
edfe3b0
GRID part-1
Dathasai1234 Jul 5, 2022
7977aca
GRID part 2
Dathasai1234 Jul 5, 2022
03bee73
GRID explained part 3
Dathasai1234 Jul 5, 2022
ddfa243
init
Dathasai1234 Jul 5, 2022
43f2032
FLEXBOX and CSS GRID completed
Dathasai1234 Jul 5, 2022
e450d8a
init
Dathasai1234 Jul 5, 2022
14b36de
Fonts completed
Dathasai1234 Jul 7, 2022
4602567
colors
Dathasai1234 Jul 7, 2022
e732f58
icons
Dathasai1234 Jul 7, 2022
3bca5bb
box-shadow
Dathasai1234 Jul 7, 2022
d255646
visual hierarchy
Dathasai1234 Jul 7, 2022
28068c7
Accordion component
Dathasai1234 Jul 8, 2022
cfa8128
Accordian in action (Script)
Dathasai1234 Jul 8, 2022
72798fd
Carousel Component
Dathasai1234 Jul 9, 2022
8c67db5
Table component
Dathasai1234 Jul 9, 2022
8e36907
Pagination component
Dathasai1234 Jul 9, 2022
5dcb787
init
Dathasai1234 Jul 9, 2022
cea21b8
Hero Section
Dathasai1234 Jul 11, 2022
a9f052a
Page layout
Dathasai1234 Jul 12, 2022
1180b84
inits
Dathasai1234 Jul 12, 2022
eb5a6c1
rem unit explained
Dathasai1234 Jul 12, 2022
4300aa2
logical html script
Dathasai1234 Jul 12, 2022
08a4997
hero base created
Dathasai1234 Jul 12, 2022
3c9db3c
transition CSS feature on hero btns
Dathasai1234 Jul 12, 2022
f1acd4c
helper class for margin right
Dathasai1234 Jul 12, 2022
23edbf5
hero section
Dathasai1234 Jul 12, 2022
07e89b7
header
Dathasai1234 Jul 12, 2022
c261b03
nav bar
Dathasai1234 Jul 12, 2022
85e4187
1) general.css file created,
Dathasai1234 Jul 13, 2022
8936179
Featured section
Dathasai1234 Jul 13, 2022
a3281ef
Meals section
Dathasai1234 Jul 13, 2022
df01efe
Testimonials and gallery section
Dathasai1234 Jul 13, 2022
8aa9db4
pricing part 01
Dathasai1234 Jul 14, 2022
17e3f30
CTA part 1
Dathasai1234 Jul 14, 2022
1b1dbf0
CTA completed
Dathasai1234 Jul 14, 2022
5261cd9
Footer
Dathasai1234 Jul 14, 2022
05d5ab0
media-queries
Dathasai1234 Jul 15, 2022
8700fc6
smooth scrolling
Dathasai1234 Jul 15, 2022
3726194
IntersectionObserver Sticky Navigation
Dathasai1234 Jul 15, 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
46 changes: 46 additions & 0 deletions datha.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<article class="product">
<h2 class="product-title">Converse Chuck Taylor All Star Low Top</h2>
<!-- <div class="container"> -->
<img
src="https://i.imgur.com/ZrTU3VK.jpeg"
alt="Chuck Taylor All Star Shoe"
height="250"
width="250"
class="product-img"
/>
<div class="product-info">
<div class="product-price">
<p class="price"><strong>$65.00</strong></p>
<p class="shipping">Free shipping</p>
</div>
<p class="sale">Sale</p>

<p class="product-description">
Ready to dress up or down, these classic canvas Chucks are an everyday
wardrobe staple.
</p>
<a href="https://converse.com" target="_blank" class="more-info"
>More information &rarr;</a
>

<div class="product-colors">
<div class="color"></div>
<div class="color color-blue"></div>
<div class="color color-red"></div>
<div class="color color-yellow"></div>
<div class="color color-green"></div>
<div class="color color-brown"></div>
</div>
</div>

<div class="product-details">
<h3 class="details-title">Product details</h3>
<ul class="details-list">
<li>Lightweight, durable canvas sneaker</li>
<li>Lightly padded footbed for added comfort</li>
<li>Iconic Chuck Taylor ankle patch.</li>
</ul>
</div>
<!-- </div> -->
<button class="add-cart">Add to cart</button>
</article>
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 to home</a>
</body>
</html>
146 changes: 146 additions & 0 deletions starter/02-HTML-Fundamentals/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>The Basic Language of the Web: HTML</title>
</head>

<body>
<!--
<h1>The Basic Language of the Web: HTML</h1>
<h2>The Basic Language of the Web: HTML</h2>
<h3>The Basic Language of the Web: HTML</h3>
<h4>The Basic Language of the Web: HTML</h4>
<h5>The Basic Language of the Web: HTML</h5>
<h6>The Basic Language of the Web: HTML</h6>
-->

<header>
<h1>📘 The Code Magazine</h1>

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

<article>
<header>
<h2>The Basic Language of the Web: HTML</h2>

<img
src="img/laura-jones.jpg"
alt="Headshot of Laura Jones"
height="50"
width="50"
/>

<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>

<img
src="img/post-img.jpg"
alt="HTML code on a screen"
width="500"
height="200"
/>
</header>

<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 <strong>H</strong>yper<strong>T</strong>ext
<strong>M</strong>arkup <strong>L</strong>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
<a
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
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="Person programming"
width="75"
width="75"
/>
<a href="#">How to Learn Web Development</a>
<p>By Jonas Schmedtmann</p>
</li>
<li>
<img src="img/related-2.jpg" alt="Lightning" width="75" heigth="75" />
<a href="#">The Unknown Powers of CSS</a>
<p>By Jim Dillon</p>
</li>
<li>
<img
src="img/related-3.jpg"
alt="JavaScript code on a screen"
width="75"
height="75"
/>
<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