<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.2">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2022-12-01T04:22:51+00:00</updated><id>/feed.xml</id><title type="html">Mohammad AlGhadban</title><subtitle>Passionate for coding. Programming with Art. Working while having Fun.</subtitle><author><name>Mohammad Alghadban</name></author><entry><title type="html">JavaScript Part 1</title><link href="/toturial/2022/08/30/Java_Script_Biggener.html" rel="alternate" type="text/html" title="JavaScript Part 1" /><published>2022-08-30T00:00:00+00:00</published><updated>2022-08-30T00:00:00+00:00</updated><id>/toturial/2022/08/30/Java_Script_Biggener</id><content type="html" xml:base="/toturial/2022/08/30/Java_Script_Biggener.html">&lt;h2 id=&quot;review&quot;&gt;Review&lt;/h2&gt;

&lt;p&gt;Let’s take one more glance at the concepts we just learned:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Data is printed, or logged, to the console, a panel that displays messages, with console.log().&lt;/li&gt;
  &lt;li&gt;We can write single-line comments with // and multi-line comments between /* and */.&lt;/li&gt;
  &lt;li&gt;There are 7 fundamental data types in JavaScript: strings, numbers, booleans, null, undefined, symbol, and object.&lt;/li&gt;
  &lt;li&gt;Numbers are any number without quotes: 23.8879&lt;/li&gt;
  &lt;li&gt;Strings are characters wrapped in single or double quotes: ‘Sample String’&lt;/li&gt;
  &lt;li&gt;The built-in arithmetic operators include +, -, *, /, and %.&lt;/li&gt;
  &lt;li&gt;Objects, including instances of data types, can have properties, stored information. The properties are denoted with a . after the name of the object, for example: ‘Hello’.length.&lt;/li&gt;
  &lt;li&gt;Objects, including instances of data types, can have methods which perform actions. Methods are called by appending the object or instance with a period, the method name, and parentheses. For example: ‘hello’.toUpperCase().&lt;/li&gt;
  &lt;li&gt;We can access properties and methods by using the ., dot operator.&lt;/li&gt;
  &lt;li&gt;Built-in objects, including Math, are collections of methods and properties that JavaScript provides.&lt;/li&gt;
  &lt;li&gt;Here are a few more resources to add to your toolkit:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;https://www.codecademy.com/resources/docs/javascript&quot;&gt;Codecademy Docs: JavaScript&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.codecademy.com/workspaces/new&quot;&gt;Codecademy Workspaces: JavaScript&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Make sure to bookmark these links so you have them at your disposal.&lt;/p&gt;</content><author><name>Mohammad Alghadban</name></author><category term="Toturial" /><category term="JavaScript" /><summary type="html">Review</summary></entry><entry><title type="html">Grid part2</title><link href="/css/2022/08/12/Grid-part2.html" rel="alternate" type="text/html" title="Grid part2" /><published>2022-08-12T00:00:00+00:00</published><updated>2022-08-12T00:00:00+00:00</updated><id>/css/2022/08/12/Grid-part2</id><content type="html" xml:base="/css/2022/08/12/Grid-part2.html">&lt;h2 id=&quot;advanced-css-grid&quot;&gt;Advanced CSS Grid:&lt;/h2&gt;

&lt;p&gt;You have learned many new properties to use when creating a layout using CSS Grid! Let’s review:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;grid-template-areas specifies grid named grid areas&lt;/li&gt;
  &lt;li&gt;grid layouts are two-dimensional: they have a row, or inline, axis and a column, or block, axis.&lt;/li&gt;
  &lt;li&gt;justify-items specifies how individual elements should spread across the row axis&lt;/li&gt;
  &lt;li&gt;justify-content specifies how groups of elements should spread across the row axis&lt;/li&gt;
  &lt;li&gt;justify-self specifies how a single element should position itself with respect to the row axis&lt;/li&gt;
  &lt;li&gt;align-items specifies how individual elements should spread across the column axis&lt;/li&gt;
  &lt;li&gt;align-content specifies how groups of elements should spread across the column axis&lt;/li&gt;
  &lt;li&gt;align-self specifies how a single element should position itself with respect to the column axis&lt;/li&gt;
  &lt;li&gt;grid-auto-rows specifies the height of rows added implicitly to the grid&lt;/li&gt;
  &lt;li&gt;grid-auto-columns specifies the width of columns added implicitly to the grid&lt;/li&gt;
  &lt;li&gt;grid-auto-flow specifies in which direction implicit elements should be created&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is a great time to experiment with the code in the code editor and try any of the properties you want to practice more! When you’re ready, move on!&lt;/p&gt;</content><author><name>Mohammad Alghadban</name></author><category term="CSS" /><category term="CSS Grid" /><summary type="html">Advanced CSS Grid:</summary></entry><entry><title type="html">Grid</title><link href="/css/2022/08/12/Grid.html" rel="alternate" type="text/html" title="Grid" /><published>2022-08-12T00:00:00+00:00</published><updated>2022-08-12T00:00:00+00:00</updated><id>/css/2022/08/12/Grid</id><content type="html" xml:base="/css/2022/08/12/Grid.html">&lt;h2 id=&quot;introduction-to-grid-in-css&quot;&gt;Introduction to Grid in CSS:&lt;/h2&gt;

&lt;p&gt;At this point, we’ve covered a great deal of different ways to manipulate the grid and the items inside it to create interesting layouts.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;grid-template-columns defines the number and sizes of the columns of the grid&lt;/li&gt;
  &lt;li&gt;grid-template-rows defines the number and sizes of the rows of the grid&lt;/li&gt;
  &lt;li&gt;grid-template is a shorthand for defining both grid-template-columns and grid-template-rows in one line&lt;/li&gt;
  &lt;li&gt;row-gap puts blank space between the rows of the grid&lt;/li&gt;
  &lt;li&gt;column-gap puts blank space between the columns of the grid&lt;/li&gt;
  &lt;li&gt;gap is a shorthand for defining both row-gap and column-gap in one line&lt;/li&gt;
  &lt;li&gt;grid-row-start and grid-row-end makes elements span certain rows of the grid&lt;/li&gt;
  &lt;li&gt;grid-column-start and grid-column-end makes elements span certain columns of the grid&lt;/li&gt;
  &lt;li&gt;grid-area is a shorthand for grid-row-start, grid-column-start, grid-row-end, and grid-column-end, all in one line&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You have seen how to set up and fill in a grid and you now have one more CSS positioning technique to add to your toolkit! Let’s do some practice to solidify these skills.&lt;/p&gt;

&lt;p&gt;HTML:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;link rel='stylesheet' href='style.css'&amp;gt;&amp;lt;/head&amp;gt;
  
&amp;lt;body&amp;gt;
  &amp;lt;div class=&quot;grid&quot;&amp;gt;
    &amp;lt;div class=&quot;box a&quot;&amp;gt;A&amp;lt;/div&amp;gt;
    &amp;lt;div class=&quot;box b&quot;&amp;gt;B&amp;lt;/div&amp;gt;
    &amp;lt;div class=&quot;box c&quot;&amp;gt;C&amp;lt;/div&amp;gt;
    &amp;lt;div class=&quot;box d&quot;&amp;gt;D&amp;lt;/div&amp;gt;
    &amp;lt;div class=&quot;box e&quot;&amp;gt;E&amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;

&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;CSS:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;.grid {
  border: 2px blue solid;
  height: 500px;
  width: 500px;
  display: grid;
  grid-template: repeat(2, 200px) / 25% 25% 2fr 1fr;
  gap: 10px 15px;
}

.box {
  background-color: beige;
  color: black;
  border-radius: 5px;
  border: 2px dodgerblue solid;
}

.a{
grid-area: 1 / span 2/ 1 / 3;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Mohammad Alghadban</name></author><category term="CSS" /><category term="CSS Grid" /><summary type="html">Introduction to Grid in CSS:</summary></entry><entry><title type="html">FLex Box part 1</title><link href="/css/2022/07/26/Flex-box_part1.html" rel="alternate" type="text/html" title="FLex Box part 1" /><published>2022-07-26T00:00:00+00:00</published><updated>2022-07-26T00:00:00+00:00</updated><id>/css/2022/07/26/Flex-box_part1</id><content type="html" xml:base="/css/2022/07/26/Flex-box_part1.html">&lt;h2 id=&quot;introduction-to-flex-box-part1&quot;&gt;Introduction to Flex box Part1&lt;/h2&gt;

&lt;p&gt;You know everything necessary to begin using it in your own projects.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;display: flex changes an element to a block-level container with flex items inside of it.&lt;/li&gt;
  &lt;li&gt;display: inline-flex allows multiple flex containers to appear inline with each other.&lt;/li&gt;
  &lt;li&gt;justify-content is used to space items along the main axis.&lt;/li&gt;
  &lt;li&gt;align-items is used to space items along the cross axis.&lt;/li&gt;
  &lt;li&gt;flex-grow is used to specify how much space (and in what proportions) flex items absorb along the main axis.&lt;/li&gt;
  &lt;li&gt;flex-shrink is used to specify how much flex items shrink and in what proportions along the main axis.&lt;/li&gt;
  &lt;li&gt;flex-basis is used to specify the initial size of an element styled with flex-grow and/or flex-shrink.&lt;/li&gt;
  &lt;li&gt;flex is used to specify flex-grow, flex-shrink, and flex-basis in one declaration.&lt;/li&gt;
  &lt;li&gt;flex-wrap specifies that elements should shift along the cross axis if the flex container is not large enough.&lt;/li&gt;
  &lt;li&gt;align-content is used to space rows along the cross axis.&lt;/li&gt;
  &lt;li&gt;flex-direction is used to specify the main and cross axes.&lt;/li&gt;
  &lt;li&gt;flex-flow is used to specify flex-wrap and flex-direction in one declaration.&lt;/li&gt;
  &lt;li&gt;Flex containers can be nested inside of each other by declaring display: flex or display: inline-flex for children of flex containers.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;example&quot;&gt;Example:&lt;/h2&gt;

&lt;p&gt;important code:&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;.cards {
  background-color: #ffc200;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.col {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The whole code:&lt;/p&gt;

&lt;p&gt;HTML:&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;lt;!doctype html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;link href='https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic' rel='stylesheet' type='text/css'&amp;gt;
  &amp;lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;div class=&quot;header&quot;&amp;gt;
    &amp;lt;div class=&quot;container&quot;&amp;gt;
      &amp;lt;h1&amp;gt;Headlines.&amp;lt;/h1&amp;gt;
      &amp;lt;ul&amp;gt;
        &amp;lt;li&amp;gt;&amp;lt;a href=&quot;3&quot;&amp;gt;About&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#expertise&quot;&amp;gt;Our Services&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;&amp;lt;a href=&quot;3&quot;&amp;gt;Our Team&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#footer&quot;&amp;gt;Contact Us&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
      &amp;lt;/ul&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div class=&quot;jumbotron&quot;&amp;gt;
    &amp;lt;div class=&quot;container&quot;&amp;gt;
      &amp;lt;h2&amp;gt;We &amp;lt;span&amp;gt;collect and curate&amp;lt;/span&amp;gt;
articles, opinions, and images
from around the world.&amp;lt;/h2&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div class=&quot;banner&quot;&amp;gt;
    &amp;lt;div class=&quot;container&quot;&amp;gt;
      &amp;lt;h2&amp;gt;The Bottom Line.&amp;lt;/h2&amp;gt;
      &amp;lt;p&amp;gt;We deliver the news that is relevant to you.&amp;lt;/p&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div class=&quot;container&quot;&amp;gt;
    &amp;lt;h2 id=&quot;expertise&quot;&amp;gt;Our Expertise.&amp;lt;/h2&amp;gt;
    &amp;lt;div class=&quot;main&quot;&amp;gt;
      &amp;lt;div class=&quot;spacer&quot;&amp;gt;
        &amp;lt;div class=&quot;cards&quot;&amp;gt;
          &amp;lt;div class=&quot;col&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p1.jpg&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p6.jpg&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p8.jpg&quot;&amp;gt;
          &amp;lt;/div&amp;gt;
          &amp;lt;div class=&quot;col&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p2.jpg&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p5.jpg&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p7.jpg&quot;&amp;gt;
          &amp;lt;/div&amp;gt;
          &amp;lt;div class=&quot;col&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p3.jpg&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p4.jpg&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p9.jpg&quot;&amp;gt;
            &amp;lt;img src=&quot;https://content.codecademy.com/projects/headlines/p10.jpg&quot;&amp;gt;
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div class=&quot;footer&quot;&amp;gt;
    &amp;lt;h3&amp;gt;Headlines.&amp;lt;/h3&amp;gt;
    &amp;lt;p&amp;gt;1000 7th Avenue&amp;lt;/p&amp;gt;
    &amp;lt;p&amp;gt;New York, NY&amp;lt;/p&amp;gt;
    &amp;lt;p&amp;gt;(484) 192 - 8372&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;CSS:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;html, body {
  margin: 0;
  padding: 0;
  font-family: 'Libre Baskerville', sans-serif;
}

img {
  margin: 10px auto;
  height: auto;
  width: auto;
}

ul {
  text-align: right;
}

h1 {
  font-size: 20px;
}

/*Sizing*/

.container {
  margin: 0 auto;
}

.spacer {
  max-width: 1200px;
  margin: auto;
}

.main {
    background-color: #ffc200;
}

/*Header Section*/

.header {
  padding: 30px 0px 40px;
  margin-left: 50px;
  margin-right: 50px;
}

.header li {
  list-style: none;
  display: inline-block;
}

.header li a {
  color: #333;
  margin:0;
  border:0px;
}

/*Jumbotron Section*/

.jumbotron {
  background-color: #fff;
  max-width: 1200px;
  margin-left: 50px;
}

.jumbotron h2 {
  font-size: 50px;
  margin-bottom: 70px;
}

.jumbotron h2 span {
  color:#ffc200;
}

.jumbotron p {
  text-shadow: 0 0;
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

/*Banner Section*/
.banner {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/*Expertise Section*/
.cards {
  background-color: #ffc200;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.col {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

#expertise {
  padding: 20px;
  background-color: #ffc200;
  margin: 0;
  text-align: center;
}

/*Footer Section*/
.footer {
  padding: 60px 0px;
  background-color: #000;
  color: #fff;
}

.footer h3 {
  font-size: 20px;
  margin-left: 20px;
}

.footer p {
  font-size:12px;
  margin-bottom: 0;
  margin-left: 20px;
}

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Mohammad Alghadban</name></author><category term="CSS" /><category term="FLex-Box CSS" /><summary type="html">Introduction to Flex box Part1</summary></entry><entry><title type="html">CSS part4</title><link href="/css/2022/07/16/CSS_part4.html" rel="alternate" type="text/html" title="CSS part4" /><published>2022-07-16T00:00:00+00:00</published><updated>2022-07-16T00:00:00+00:00</updated><id>/css/2022/07/16/CSS_part4</id><content type="html" xml:base="/css/2022/07/16/CSS_part4.html">&lt;h2 id=&quot;introduction-to-css-part4&quot;&gt;Introduction to CSS Part4&lt;/h2&gt;

&lt;p&gt;In this lesson we covered the concept of using breadcrumbs as a secondary navigation method for a site:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Use breadcrumbs to indicate where a user is and the extent of the site&lt;/li&gt;
  &lt;li&gt;Breadcrumbs are implemented using unordered lists in HTML with custom CSS styling&lt;/li&gt;
  &lt;li&gt;Three types of breadcrumbs exist:&lt;/li&gt;
  &lt;li&gt;location - based on hierarchical structure of site&lt;/li&gt;
  &lt;li&gt;attribute - based on attributes of current page or item&lt;/li&gt;
  &lt;li&gt;path - unique to a user’s journey on the site&lt;/li&gt;
  &lt;li&gt;Path-based breadcrumbs can be confusing, only use if needed&lt;/li&gt;
  &lt;li&gt;Ensure breadcrumbs will add value before adding to a site&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;example&quot;&gt;Example:&lt;/h3&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;.breadcrumb li{
  display: inline;
}

.breadcrumb li.location+li.location::before{
  padding:10px;
  color:blue;
  content: &quot;&amp;gt;&quot;
}

.breadcrumb a:hover{
  text-decoration: underline;
}

.breadcrumb li.attribute a {
  color: gray;
}
.breadcrumb li.attribute::after {
  content: &quot;x&quot;;
  color: red;
  font-size: 10px;
  vertical-align: super;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h3 id=&quot;making-arrows-of-breadcrumbs&quot;&gt;making arrows of breadcrumbs:&lt;/h3&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;.breadcrumb {
  text-align: left;
}
// ................................. making the body of the arrow:

.breadcrumb li {
  float: left;
}


.breadcrumb a {
  color: #fff;
  background: darkcyan;
  text-decoration: none;
  position: relative;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 15px;
  padding: 0 5px;
}

// ...................................... making it an arrow:

.breadcrumb a::before,
.breadcrumb a::after {
  content: &quot;&quot;;
  position: absolute;
  border-color: darkcyan;
  border-style: solid;
  border-width: 15px 5px;
}
.breadcrumb a::before {
  left: -10px;
  border-left-color: transparent;
}
.breadcrumb a::after {
  left: 100%;
}
.breadcrumb a::after {
  left: 100%;
  border-color: transparent;
  border-left-color: darkcyan;
}

// ................................. styling

.breadcrumb a:hover {
  background-color: blue;
}
.breadcrumb a:hover::before {
  border-color: blue;
  border-left-color: transparent;
}
.breadcrumb a:hover::after {
  border-left-color: blue;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Mohammad Alghadban</name></author><category term="CSS" /><category term="CSS" /><summary type="html">Introduction to CSS Part4</summary></entry><entry><title type="html">CSS part1</title><link href="/css/2022/07/08/CSS_part1.html" rel="alternate" type="text/html" title="CSS part1" /><published>2022-07-08T00:00:00+00:00</published><updated>2022-07-08T00:00:00+00:00</updated><id>/css/2022/07/08/CSS_part1</id><content type="html" xml:base="/css/2022/07/08/CSS_part1.html">&lt;h2 id=&quot;introduction-to-css-part1&quot;&gt;Introduction to CSS Part1&lt;/h2&gt;

&lt;p&gt;Let’s review what you learned so far:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;The basic anatomy of CSS syntax written for both inline styles and stylesheets.&lt;/li&gt;
  &lt;li&gt;Some commonly used CSS terms, such as ruleset, selector, and declaration.&lt;/li&gt;
  &lt;li&gt;CSS inline styles can be written inside the opening HTML tag using the style attribute.&lt;/li&gt;
  &lt;li&gt;Inline styles can be used to style HTML, but it is not the best practice.&lt;/li&gt;
  &lt;li&gt;An internal stylesheet is written using the &amp;lt;style&amp;gt; element inside the &amp;lt;head&amp;gt; element of an HTML file.&lt;/li&gt;
  &lt;li&gt;Internal stylesheets can be used to style HTML but are also not best practice.&lt;/li&gt;
  &lt;li&gt;An external stylesheet separates CSS code from HTML, by using the “.css”.file extension.&lt;/li&gt;
  &lt;li&gt;External stylesheets are the best approach when it comes to using HTML and CSS.&lt;/li&gt;
  &lt;li&gt;External stylesheets are linked to HTML using the &amp;lt;link&amp;gt; element.&lt;/li&gt;
  &lt;li&gt;Take this knowledge to the next lesson, where you start learning how to select HTML elements to style!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here are a few more resources to add to your toolkit:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.codecademy.com/resources/docs/css&quot;&gt;Codecademy Docs: CSS&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.codecademy.com/workspaces/new&quot;&gt;Codecademy Workspaces: CSS&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;example&quot;&gt;Example:&lt;/h2&gt;
&lt;p&gt;HTML file: Index.HTML&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;lt;head&amp;gt;
  &amp;lt;title&amp;gt;Vacation World&amp;lt;/title&amp;gt;
  &amp;lt;link href='style.css' rel='stylesheet'&amp;gt;
&amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;CSS file: Style.CSS&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;p {
  color: green;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Mohammad Alghadban</name></author><category term="CSS" /><category term="CSS" /><summary type="html">Introduction to CSS Part1</summary></entry><entry><title type="html">CSS part2</title><link href="/css/2022/07/08/CSS_part2.html" rel="alternate" type="text/html" title="CSS part2" /><published>2022-07-08T00:00:00+00:00</published><updated>2022-07-08T00:00:00+00:00</updated><id>/css/2022/07/08/CSS_part2</id><content type="html" xml:base="/css/2022/07/08/CSS_part2.html">&lt;h2 id=&quot;introduction-to-css-part2&quot;&gt;Introduction to CSS Part2&lt;/h2&gt;

&lt;p&gt;Throughout this lesson, you learned how to select HTML elements with CSS and apply styles to them. Let’s review what you learned:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;CSS can select HTML elements by type, class, ID, and attribute.&lt;/li&gt;
  &lt;li&gt;All elements can be selected using the universal selector.&lt;/li&gt;
  &lt;li&gt;An element can have different states using the pseudo-class selector.&lt;/li&gt;
  &lt;li&gt;Multiple CSS classes can be applied to one HTML element.&lt;/li&gt;
  &lt;li&gt;Classes can be reusable, while IDs can only be used once.&lt;/li&gt;
  &lt;li&gt;IDs are more specific than classes, and classes are more specific than type. That means IDs will override any styles from a class, and classes will override any styles from a type selector.&lt;/li&gt;
  &lt;li&gt;Multiple selectors can be chained together to select an element. This raises the specificity but can be necessary.&lt;/li&gt;
  &lt;li&gt;Nested elements can be selected by separating selectors with a space.&lt;/li&gt;
  &lt;li&gt;Multiple unrelated selectors can receive the same styles by separating the selector names with commas.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;example&quot;&gt;Example:&lt;/h2&gt;

&lt;p&gt;HTML file:&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;

&amp;lt;head&amp;gt;
  &amp;lt;title&amp;gt;Vacation World&amp;lt;/title&amp;gt;
  &amp;lt;link href='style.css' rel='stylesheet'&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;
  &amp;lt;img src='https://content.codecademy.com/courses/freelance-1/unit-2/explorer.jpeg' /&amp;gt;
  &amp;lt;h1 class='title uppercase' id='article-title'&amp;gt;Top Vacation Spots&amp;lt;/h1&amp;gt;
  &amp;lt;h5 class='author-class' id='author-id'&amp;gt;By: Stacy Gray&amp;lt;/h5&amp;gt;
  &amp;lt;h6 id='publish-time'&amp;gt;Published: 2 Days Ago&amp;lt;/h6&amp;gt;

  &amp;lt;p&amp;gt;The world is full of fascinating places. Planning the perfect vacation involves packing up, leaving home, and experiencing something new.&amp;lt;/p&amp;gt;

  &amp;lt;h2 class='destination heading-background'&amp;gt;1. Florence, Italy&amp;lt;/h2&amp;gt;
  &amp;lt;div class='description'&amp;gt;A city-size shrine to the Renaissance, Florence offers frescoes, sculptures, churches, palaces, and other monuments from the richest cultural flowering the world has known. Names from its dazzling historical past; Dante, Michelangelo, Galileo, Machiavelliare are some of the most resonant of the medieval age. &amp;lt;a href='https://www.nationalgeographic.com/travel/destination/florence' target='_blank'&amp;gt;Learn More&amp;lt;/a&amp;gt;.
    &amp;lt;h5&amp;gt;Top Attractions&amp;lt;/h5&amp;gt;
    &amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;Museums&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Bike Tours&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Historical Monuments&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
  &amp;lt;/div&amp;gt;

  &amp;lt;h2 class='destination heading-background'&amp;gt;2. Beijing, China&amp;lt;/h2&amp;gt;
  &amp;lt;div class='description'&amp;gt;A city in the midst of reinventing itself and continuing to build on the success of the 2008 Summer Olympics, Beijing is a place of frenzied construction. New housing, new roads, and new sports venues seem to spring up overnight. At the same time, the capital of the Peoples Republic of China remains an epicenter of tradition, with the treasures of nearly 2,000 years as the imperial capital still on view in the famed Forbidden City and in the luxuriant pavilions and gardens of the Summer Palace.
    &amp;lt;a href='https://www.nationalgeographic.com/travel/destination/beijing' target='_blank'&amp;gt;Learn More&amp;lt;/a&amp;gt;.
    &amp;lt;h5&amp;gt;Top Attractions&amp;lt;/h5&amp;gt;
    &amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;Biking&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Historical Sites&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Restaurants and Dining&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
  &amp;lt;/div&amp;gt;

  &amp;lt;h2 class='destination heading-background'&amp;gt;3. Seoul, South Korea&amp;lt;/h2&amp;gt;
  &amp;lt;div class='description'&amp;gt;The Korean capital is a city of contrasts. Fourteenth-century city gates squat in the shadow of 21st-century skyscrapers, while the broad Han River is back-dropped by granite mountains rising in the city center complete with alpine highways speeding around their contours and temples nestling among their crags. Fashionable, gadget-laden youths battle for sidewalk space with fortune-tellers and peddlers, while tiny neighborhoods of traditional cottages contrast with endless ranks of identical apartments.
    &amp;lt;a href='https://www.nationalgeographic.com/travel/destination/seoul' target='_blank'&amp;gt;Learn More&amp;lt;/a&amp;gt;.
    &amp;lt;h5&amp;gt;Top Attractions&amp;lt;/h5&amp;gt;
    &amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;Parasailing&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Segway Tours&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Spas and Resorts&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
  &amp;lt;/div&amp;gt;

  &amp;lt;h2 class='heading-background'&amp;gt; More Destinations &amp;lt;/h2&amp;gt;
  &amp;lt;ul&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;h4 class='destination'&amp;gt;Jackson Hole, Wyoming&amp;lt;/h4&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;h4 class='destination'&amp;gt;Cape Town, South Africa&amp;lt;/h4&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;h4 class='destination'&amp;gt;La Paz, Bolivia&amp;lt;/h4&amp;gt;&amp;lt;/li&amp;gt;
  &amp;lt;/ul&amp;gt;

  &amp;lt;p&amp;gt;&amp;amp;mdash;Best of luck with your travels, and be sure to send pictures and stories. We'd love to hear them!&amp;lt;/p&amp;gt;


&amp;lt;/body&amp;gt;

&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;CSS file:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;{
  border: 1px solid red;
}

p {
  color: green;
}

h1 {
  color: maroon;
}

.title {
  color: teal;
}

.uppercase {
  text-transform: uppercase;
}

#article-title {
  font-family: cursive;
}

a[href*='florence'] {
  color: lightgreen;
}

a[href*='beijing'] {
  color: lightblue;
}

a[href*='seoul'] {
  color: lightpink;
}

a:hover {
  color:darkorange;
}

.heading-background {
  background-color: aqua;
}

#publish-time {
  color: lightgray;
}

h5 {
  color: yellow;
}

.author-class {
  color: pink;
}

#author-id {
  color: cornflowerblue;
}

h2.destination {
  font-family: Tahoma;
}

.description h5 {
  color: blueviolet;
}

li h4 {
  color: gold;
}

h4 {
  color: dodgerblue;
}

li,
h5 {
  font-family: monospace;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Throughout this lesson, you learned concepts including:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;The font-family property defines the typeface of an element.&lt;/li&gt;
  &lt;li&gt;font-size controls the size of text displayed.&lt;/li&gt;
  &lt;li&gt;font-weight defines how thin or thick text is displayed.&lt;/li&gt;
  &lt;li&gt;The text-align property places text in the left, right, or center of its parent container.&lt;/li&gt;
  &lt;li&gt;Text can have two different color attributes: color and background-color. color defines the color of the text, while background-color defines the color behind the text.&lt;/li&gt;
  &lt;li&gt;CSS can make an element transparent with the opacity property.&lt;/li&gt;
  &lt;li&gt;CSS can also set the background of an element to an image with the background-image property.&lt;/li&gt;
  &lt;li&gt;The !important flag will override any style, however it should almost never be used, as it is extremely difficult to override.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;example-1&quot;&gt;Example:&lt;/h2&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;body {
  /* Old browsers */
  background: #141E30;
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(-45deg, #35577D, #141E30);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: linear-gradient(-45deg, #35577D, #141E30);
  margin: 0;
  padding: 0;
}

h1 {
  color: #FFF !important;
  font-size: 2em;
  padding-top: 100px;
  width: 100%;
  font-family: Georgia;
  text-align: center;
}

h2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 100;
  font-size: 22px;
  line-height: 24px;
  padding-bottom: 30px;
  text-align: left;
  width: 70%;
  font-family: Georgia;
}

p {
  color: aliceblue;
  line-height: 1.3em;
  text-align: left;
  width: 100%;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: bold;
}

.byline {
  font-family: Helvetica;
  color: rgba(255, 255, 255, 0.5);
  float: left;
  font-size: 14px;
  padding-left: 10px;
  text-transform: uppercase;
}

.caption {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  line-height: 14px;
  margin-left: 20px;
  padding: 10px;
  position: relative;
  top: 80%;
  width: 60%;
  background-color: white;
  color: black;
}

.content {
  padding: 40px;
}

.image {
  background-image: url('https://content.codecademy.com/courses/freelance-1/unit-2/soccer.jpeg');
  background-size: cover;
  background-position: center;
  height: 300px;
}

.writer-img {
  -webkit-box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
  -moz-box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
  box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
  float: left;
  width: 50px;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;documentation-css&quot;&gt;Documentation: CSS&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://developer.mozilla.org/en-US/docs/Web/CSS&quot;&gt;MDN&lt;/a&gt;
The provided link goes directly to the go-to documentation for CSS (Cascading Style Sheets). This is helpful if you would like a comprehensive resource for understanding the key concepts of CSS and understanding how to debug common CSS problems.&lt;/p&gt;

&lt;p&gt;Instead of trying to remember it all, use the documentation as a readily available resource for syntax or implementation help!&lt;/p&gt;</content><author><name>Mohammad Alghadban</name></author><category term="CSS" /><category term="CSS" /><summary type="html">Introduction to CSS Part2</summary></entry><entry><title type="html">CSS part3</title><link href="/css/2022/07/08/CSS_part3.html" rel="alternate" type="text/html" title="CSS part3" /><published>2022-07-08T00:00:00+00:00</published><updated>2022-07-08T00:00:00+00:00</updated><id>/css/2022/07/08/CSS_part3</id><content type="html" xml:base="/css/2022/07/08/CSS_part3.html">&lt;h2 id=&quot;introduction-to-css-part3&quot;&gt;Introduction to CSS Part3&lt;/h2&gt;

&lt;p&gt;In this lesson, we covered the four properties of the box model: height and width, padding, borders, and margins. Understanding the box model is an important step towards learning more advanced HTML and CSS topics. Let’s take a minute to review what you learned:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;The box model comprises a set of properties used to create space around and between HTML elements.&lt;/li&gt;
  &lt;li&gt;The height and width of a content area can be set in pixels or percentages.&lt;/li&gt;
  &lt;li&gt;Borders surround the content area and padding of an element. The color, style, and thickness of a border can be set with CSS properties.&lt;/li&gt;
  &lt;li&gt;Padding is the space between the content area and the border. It can be set in pixels or percent.&lt;/li&gt;
  &lt;li&gt;Margin is the amount of spacing outside of an element’s border.&lt;/li&gt;
  &lt;li&gt;Horizontal margins add, so the total space between the borders of adjacent elements is equal to the sum of the right margin of one element and the left margin of the adjacent element.&lt;/li&gt;
  &lt;li&gt;Vertical margins collapse, so the space between vertically adjacent elements is equal to the larger margin.&lt;/li&gt;
  &lt;li&gt;margin: 0 auto horizontally centers an element inside of its parent content area, if it has a width.&lt;/li&gt;
  &lt;li&gt;The overflow property can be set to display, hide, or scroll, and dictates how HTML will render content that overflows its parent’s content area.&lt;/li&gt;
  &lt;li&gt;The visibility property can hide or show elements.&lt;/li&gt;
  &lt;li&gt;In the default box model, box dimensions are affected by border thickness and padding.&lt;/li&gt;
  &lt;li&gt;The box-sizing property controls the box model used by the browser.&lt;/li&gt;
  &lt;li&gt;The default value of the box-sizing property is content-box.&lt;/li&gt;
  &lt;li&gt;The value for the new box model is border-box.&lt;/li&gt;
  &lt;li&gt;The border-box model is not affected by border thickness or padding.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;example&quot;&gt;Example:&lt;/h2&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;*{
  box-sizing: border-box;
}
body {
  background-color: white;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
}

.navigation ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.navigation li {
  font-weight: 100;
  letter-spacing: 2px;
  padding: 20px;
}

.navigation  li.logo {
  color: black;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
}

.donate{
  visibility: hidden;
}

#banner {
  background-image: url(&quot;https://content.codecademy.com/courses/web-101/unit-6/htmlcss1-img_tahoe.jpeg&quot;);
  background-size: cover;
  background-position: bottom center;
  height: 700px;
  width: 100%;
}

#banner .content h1 {
  border: 3px solid white;
  position: relative;
  top: 50px;
  width: 400px;
  margin: 0 auto;
}

#main {
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  width: 400px;
  height: 1000px;
  overflow: scroll;
}

h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
}

h2 {
  border: 1px dotted red;
  color: red;
  font-size: 14px;
  line-height: 48px;
  padding: 20px 30px;
  margin: 30px 20px;
  text-align: center;
}

h3 {
  color: red;
  font-size: 26px;
  font-weight: 700;
  padding: 20px 10px;
}

p {
  color: grey;
  font-size: 16px;
  line-height: 48px;
  margin-top: 60px;
  padding: 10px 20px;
}

.pull-quote {
  margin: 0 auto;
  width: 400px;
}

.byline {
  border-bottom: 1px solid LightGrey;
  border-top: 1px solid LightGrey;
  color: DarkGrey;
  font-size: 14px;
  font-weight: 200;
}

.share {
  border: 1px solid LightGrey;
  padding: 40px 0px;
  position: relative;
  text-align: center;
  width: 100%;
}

.share a {
  background: red;
  border: 1px solid red;
  border-radius: 3px;
  color: white;
  display: inline-block;
  margin: 10px;
  padding: 14px;
  text-decoration: none;
}

.share a:hover {
  background: white;
  border: 1px solid red;
  color: red;
}

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;/* Universal Styles */

body {
  background-image: url(&quot;https://content.codecademy.com/courses/web-101/unit-6/htmlcss1-img_foodlogo.png&quot;);
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}

a {
  text-decoration: none;
}

/* Navigation */

nav {
  text-align: center;
}

nav img {
  display: block;
  width: 180;
  margin: 0 auto;
}

nav span {
  display: block;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 2px;
  margin: 10px 0px;
}

nav a {
  color: #666666;
}

/* Content Container */

.content {
  width: 100%;
  height: 500px;
  margin: 10px auto;
  overflow: scroll;
}

/* Content Header */

.header {
  background-image: url(&quot;https://content.codecademy.com/courses/web-101/unit-6/htmlcss1-img_burgerphoto.jpeg&quot;);
  background-position: center;
  background-size: cover;
  height: 320px;
}

.header h1 {
  background-color: #05A8AA;
  color: #FFF;
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  width: 68%;
  padding: 20px;
  margin: 0 auto;
}

/* Content Body */

.content .body {
  width: 90%;
  margin: 0 auto;
}

.body p {
  color: #333333;
  font-weight: 100;
  line-height: 34px;
  width: 90%;
  margin-top: 18px;
}

/* Content Button */

.button {
  border-radius: 4px;
  color: #05A8AA;
  display: block;
  font-weight: 700;
  width: 200px;
  padding: 20px;
  margin: 40px auto;
  border: 1px solid blue;
}

.button:hover {
  background-color: #05A8AA;
  border: 1px solid #05A8AA;
  color: #FFF;
}

/* Content Nutrition */

ul.nutrition {
  padding: 20px;
}

ul.nutrition li {
  display: inline-block;
  background-color: #05A8AA;
  list-style: none;
  width: 200px;
  padding: 10px 20px;
  margin-bottom: 3px;
}

.nutrition .category {
  color: white;
  font-weight: 100;
  letter-spacing: 2px;
  display: block;
}

.nutrition .value {
  color: white;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3 id=&quot;lets-review-what-youve-learned-so-far&quot;&gt;Let’s review what you’ve learned so far:&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;The position property allows you to specify the position of an element.&lt;/li&gt;
  &lt;li&gt;When set to relative, an element’s position is relative to its default position on the page.&lt;/li&gt;
  &lt;li&gt;When set to absolute, an element’s position is relative to its closest positioned parent element. It can be pinned to any part of the web page, but the element will still move with the rest of the document when the page is scrolled.&lt;/li&gt;
  &lt;li&gt;When set to fixed, an element’s position can be pinned to any part of the web page. The element will remain in view no matter what.&lt;/li&gt;
  &lt;li&gt;When set to sticky, an element can stick to a defined offset position when the user scrolls its parent container.&lt;/li&gt;
  &lt;li&gt;The z-index of an element specifies how far back or how far forward an element appears on the page when it overlaps other elements.&lt;/li&gt;
  &lt;li&gt;The display property allows you to control how an element flows vertically and horizontally in a document.&lt;/li&gt;
  &lt;li&gt;inline elements take up as little space as possible, and they cannot have manually adjusted width or height.&lt;/li&gt;
  &lt;li&gt;block elements take up the width of their container and can have manually adjusted heights.&lt;/li&gt;
  &lt;li&gt;inline-block elements can have set width and height, but they can also appear next to each other and do not take up their entire container width.&lt;/li&gt;
  &lt;li&gt;The float property can move elements as far left or as far right as possible on a web page.&lt;/li&gt;
  &lt;li&gt;You can clear an element’s left or right side (or both) using the clear property.&lt;/li&gt;
  &lt;li&gt;When combined with an understanding of the box model, positioning can create visually appealing web pages. So far, we’ve focused on adding content in the form of text to a web page. In the next unit, you’ll learn how to add and manipulate images to a web page.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;example-1&quot;&gt;Example:&lt;/h2&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;body {
  background-color: #FFF;
  margin: 0 auto;
}

header {
  background-color: #466995;
  border-bottom: 1px solid #466995;
  position: fixed;
  width: 100%;
  z-index: 10;
}

ul {
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

li {
  color: #FFF;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
  width: 80px;  
}

li:hover {
  color: #DBE9EE;
}

h1 {
  color: #466995;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
}

h2 {
  color: #333;
  font-family: 'Varela Round', sans-serif;
  font-size: 26px;
  font-weight: 100;
  margin: 0 auto 20px auto;
}

h3 {
  color: #466995;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  padding: 30px;
}

h4 {
  color: #466995;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase
}

p {
  color: #333;
  font-family: 'Varela Round', sans-serif;
  font-size: 18px;
}

footer {
  background-color: #DBE9EE;
  text-align: center;
  height: 100px;
}

.welcome {
  background-color: #DBE9EE;
  box-sizing: border-box;
  padding: 40px;
  text-align: center;
  width: 100%;
  position: relative;
  top: 50px;
}

.question {
  text-align: center;
  position: relative;
  top: 40px;
}

.answer {
  border: 1px solid #466995;
  margin: 20px;
  display: inline-block;
}

.answer:hover {
  background: #C0D6DF;
  color: #FFF;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;button-example&quot;&gt;Button Example:&lt;/h2&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;a{
  color:blue;
  text-decoration: underline;
  cursor: pointer;
}

a:hover{
  text-decoration: none;
}

.nav-link{
  text-decoration: none;
}

.nav-link:hover{
  color: #5495ff
}

.btn {
  background-color: #2176FF;
  border-radius: 2px;
  color: #ffffff;
  font-family: 'Raleway',sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 14px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover {
  background-color: #fff;
  color: #2176FF;
  transition: color .1s ease-in, background-color .1s ease-in;
}
 
.btn:active {
  font-size: 18px;
  transition: font-size .1s ease-in-out;
}

.activity {
  border: 1px solid #2176FF;
  cursor: pointer;
  text-decoration: none;
}
.activity:hover {
  background-color: #fff;
  color: #5495ff;
  transition: color .9s , background-color .9s ;
}
 
.activity:active {
  font-size: 40px;
  transition: font-size .1s;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Mohammad Alghadban</name></author><category term="CSS" /><category term="CSS" /><summary type="html">Introduction to CSS Part3</summary></entry><entry><title type="html">HTML</title><link href="/html/2022/07/08/HTML.html" rel="alternate" type="text/html" title="HTML" /><published>2022-07-08T00:00:00+00:00</published><updated>2022-07-08T00:00:00+00:00</updated><id>/html/2022/07/08/HTML</id><content type="html" xml:base="/html/2022/07/08/HTML.html">&lt;h2 id=&quot;introduction-to-html&quot;&gt;Introduction to HTML&lt;/h2&gt;

&lt;p&gt;Review
Congratulations on completing the first lesson of HTML! You are well on your way to becoming a skilled web developer.&lt;/p&gt;

&lt;p&gt;Let’s review what you’ve learned so far:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;HTML stands for HyperText Markup Language and is used to create the structure and content of a webpage.&lt;/li&gt;
  &lt;li&gt;Most HTML elements contain opening and closing tags with raw text or other HTML tags between them.&lt;/li&gt;
  &lt;li&gt;HTML elements can be nested inside other elements. The enclosed element is the child of the enclosing parent element.&lt;/li&gt;
  &lt;li&gt;Any visible content should be placed within the opening and closing &amp;lt;body&amp;gt; tags.&lt;/li&gt;
  &lt;li&gt;Headings and sub-headings, &amp;lt;h1&amp;gt; to &amp;lt;h6&amp;gt; tags, are used to provide titles for sections of content.&lt;/li&gt;
  &lt;li&gt;&amp;lt;p&amp;gt;, &amp;lt;span&amp;gt; and &amp;lt;div&amp;gt; tags specify text or blocks.&lt;/li&gt;
  &lt;li&gt;The &amp;lt;em&amp;gt; and &amp;lt;strong&amp;gt; tags are used to emphasize text.&lt;/li&gt;
  &lt;li&gt;Line breaks are created with the &amp;lt;br&amp;gt; tag.&lt;/li&gt;
  &lt;li&gt;Ordered lists &amp;lt;ol&amp;gt; are numbered and unordered lists &amp;lt;ul&amp;gt; are bulleted.&lt;/li&gt;
  &lt;li&gt;Images &amp;lt;img&amp;gt; and videos &amp;lt;video&amp;gt; can be added by linking to an existing source.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;here-are-a-few-more-resources-to-add-to-your-toolkit&quot;&gt;Here are a few more resources to add to your toolkit:&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://www.codecademy.com/resources/docs/html&quot;&gt;Codecademy Docs: HTML&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.codecademy.com/workspaces/new&quot;&gt;Codecademy Workspaces: HTML&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.codecademy.com/learn/paths/fscj-22-web-development-foundations/tracks/fscj-22-fundamentals-of-html/modules/wdcp-22-learn-html-elements-bb06b814-30b2-4873-9450-18c0a1fa7124/cheatsheet&quot;&gt;HTML Cheatsheet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;##Example&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt; &amp;lt;body&amp;gt;
 &amp;lt;h1&amp;gt;The Brown Bear&amp;lt;/h1&amp;gt;
  &amp;lt;div id=&quot;introduction&quot;&amp;gt;
    &amp;lt;h2&amp;gt;About Brown Bears&amp;lt;/h2&amp;gt;
    &amp;lt;p&amp;gt;The brown bear (&amp;lt;em&amp;gt;Ursus arctos&amp;lt;/em&amp;gt;) is native to parts of northern Eurasia and North America. Its conservation status is currently &amp;lt;strong&amp;gt;Least    Concern&amp;lt;/strong&amp;gt;.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt; There are many subspecies within the brown bear species, including the Atlas bear and the Himalayan brown bear.&amp;lt;/p&amp;gt;
    &amp;lt;h3&amp;gt;Species&amp;lt;/h3&amp;gt;
    &amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;Arctos&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Collarus&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Horribilis&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Nelsoni (extinct)&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
    &amp;lt;h3&amp;gt;Features&amp;lt;/h3&amp;gt;
     &amp;lt;p&amp;gt;Brown bears are not always completely brown. Some can be reddish or yellowish. They have very large, curved claws and huge paws. Male brown bears are often 30% larger than female brown bears. They can range from 5 feet to 9 feet from head to toe.&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div id=&quot;habitat&quot;&amp;gt;
    &amp;lt;h2&amp;gt;Habitat&amp;lt;/h2&amp;gt;
   &amp;lt;h3&amp;gt;Countries with Large Brown Bear Populations&amp;lt;/h3&amp;gt;
    &amp;lt;ol&amp;gt;
      &amp;lt;li&amp;gt;Russia&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;United States&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Canada&amp;lt;/li&amp;gt;
   &amp;lt;/ol&amp;gt;
   &amp;lt;h3&amp;gt;Countries with Small Brown Bear Populations&amp;lt;/h3&amp;gt;
   &amp;lt;p&amp;gt;Some countries with smaller brown bear populations include Armenia, Belarus, Bulgaria, China, Finland, France, Greece, India, Japan, Nepal, Poland, Romania, Slovenia, Turkmenistan, and Uzbekistan.&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div id=&quot;media&quot;&amp;gt;
    &amp;lt;h2&amp;gt;Media&amp;lt;/h2&amp;gt;
    &amp;lt;img src=&quot;https://content.codecademy.com/courses/web-101/web101-image_brownbear.jpg&quot; alt=&quot;A Brown Bear&quot;/&amp;gt;
    &amp;lt;video src=&quot;https://content.codecademy.com/courses/freelance-1/unit-1/lesson-2/htmlcss1-vid_brown-bear.mp4&quot; width=&quot;320&quot; height=&quot;240&quot; controls&amp;gt;
  Video not supported
   &amp;lt;/video&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;body&gt;
  &lt;h1&gt;The Brown Bear&lt;/h1&gt;
  &lt;div id=&quot;introduction&quot;&gt;
    &lt;h2&gt;About Brown Bears&lt;/h2&gt;
    &lt;p&gt;The brown bear (&lt;em&gt;Ursus arctos&lt;/em&gt;) is native to parts of northern Eurasia and North America. Its conservation status is currently &lt;strong&gt;Least Concern&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt; There are many subspecies within the brown bear species, including the Atlas bear and the Himalayan brown bear.&lt;/p&gt;
    &lt;h3&gt;Species&lt;/h3&gt;
    &lt;ul&gt;
      &lt;li&gt;Arctos&lt;/li&gt;
      &lt;li&gt;Collarus&lt;/li&gt;
      &lt;li&gt;Horribilis&lt;/li&gt;
      &lt;li&gt;Nelsoni (extinct)&lt;/li&gt;
    &lt;/ul&gt;
    &lt;h3&gt;Features&lt;/h3&gt;
    &lt;p&gt;Brown bears are not always completely brown. Some can be reddish or yellowish. They have very large, curved claws and huge paws. Male brown bears are often 30% larger than female brown bears. They can range from 5 feet to 9 feet from head to toe.&lt;/p&gt;
  &lt;/div&gt;
  &lt;div id=&quot;habitat&quot;&gt;
    &lt;h2&gt;Habitat&lt;/h2&gt;
    &lt;h3&gt;Countries with Large Brown Bear Populations&lt;/h3&gt;
    &lt;ol&gt;
      &lt;li&gt;Russia&lt;/li&gt;
      &lt;li&gt;United States&lt;/li&gt;
      &lt;li&gt;Canada&lt;/li&gt;
    &lt;/ol&gt;
    &lt;h3&gt;Countries with Small Brown Bear Populations&lt;/h3&gt;
    &lt;p&gt;Some countries with smaller brown bear populations include Armenia, Belarus, Bulgaria, China, Finland, France, Greece, India, Japan, Nepal, Poland, Romania, Slovenia, Turkmenistan, and Uzbekistan.&lt;/p&gt;
  &lt;/div&gt;
  &lt;div id=&quot;media&quot;&gt;
    &lt;h2&gt;Media&lt;/h2&gt;
    &lt;img src=&quot;https://content.codecademy.com/courses/web-101/web101-image_brownbear.jpg&quot; alt=&quot;A Brown Bear&quot; /&gt;
    &lt;video src=&quot;https://content.codecademy.com/courses/freelance-1/unit-1/lesson-2/htmlcss1-vid_brown-bear.mp4&quot; width=&quot;320&quot; height=&quot;240&quot; controls=&quot;&quot;&gt;
      Video not supported
    &lt;/video&gt;
  &lt;/div&gt;
&lt;/body&gt;</content><author><name>Mohammad Alghadban</name></author><category term="HTML" /><category term="HTML" /><summary type="html">Introduction to HTML</summary></entry><entry><title type="html">HTML part2</title><link href="/html/2022/07/08/HTML_part2.html" rel="alternate" type="text/html" title="HTML part2" /><published>2022-07-08T00:00:00+00:00</published><updated>2022-07-08T00:00:00+00:00</updated><id>/html/2022/07/08/HTML_part2</id><content type="html" xml:base="/html/2022/07/08/HTML_part2.html">&lt;h2 id=&quot;introduction-to-html-part2&quot;&gt;Introduction to HTML Part2&lt;/h2&gt;

&lt;h3 id=&quot;html-tags&quot;&gt;HTML Tags&lt;/h3&gt;
&lt;p&gt;You now know all of the basic elements and set-up you need to structure an HTML page and add different types of content. With the help of CSS, very soon you’ll be creating beautiful websites!&lt;/p&gt;

&lt;p&gt;While some tags have a very specific purpose, such as image and video tags, most tags are used to describe the content that they surround, which helps us modify and style our content later. There are seemingly infinite numbers of tags to use (many more than we’ve taught). Knowing when to use each one is based on how you want to describe the content of your HTML. Descriptive, well-chosen tags are one key to high-quality web development. A full list of available HTML tags can be found in 
&lt;a href=&quot;https://developer.mozilla.org/en-US/docs/Web/HTML/Element&quot;&gt;Mozilla documentation.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let’s review what you’ve learned this lesson:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;The &amp;lt;!DOCTYPE html&amp;gt; declaration should always be the first line of code in your HTML files. This lets the browser know what version of HTML to expect.&lt;/li&gt;
  &lt;li&gt;The &amp;lt;html&amp;gt; element will contain all of your HTML code.&lt;/li&gt;
  &lt;li&gt;Information about the web page, like the title, belongs within the &amp;lt;head&amp;gt; of the page.&lt;/li&gt;
  &lt;li&gt;You can add a title to your web page by using the &amp;lt;title&amp;gt; element, inside of the head.&lt;/li&gt;
  &lt;li&gt;A webpage’s title appears in a browser’s tab.&lt;/li&gt;
  &lt;li&gt;Anchor tags &amp;lt;a&amp;gt; are used to link to internal pages, external pages or content on the same page.&lt;/li&gt;
  &lt;li&gt;You can create sections on a webpage and jump to them using &amp;lt;a&amp;gt; tags and adding ids to the elements you wish to jump to.&lt;/li&gt;
  &lt;li&gt;Whitespace between HTML elements helps make code easier to read while not changing how elements appear in the browser.&lt;/li&gt;
  &lt;li&gt;Indentation also helps make code easier to read. It makes parent-child relationships visible.&lt;/li&gt;
  &lt;li&gt;Comments are written in HTML using the following syntax: &amp;lt;!– comment –&amp;gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;example&quot;&gt;Example:&lt;/h2&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;    &amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;

&amp;lt;head&amp;gt;
 &amp;lt;title&amp;gt;Brown Bears&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;
  &amp;lt;nav&amp;gt;
   &amp;lt;a href=&quot;./index.html&quot;&amp;gt;Brown Bear&amp;lt;/a&amp;gt;
    &amp;lt;a href=&quot;./aboutme.html&quot;&amp;gt;About Me&amp;lt;/a&amp;gt;
 &amp;lt;/nav&amp;gt;
 &amp;lt;h1&amp;gt;The Brown Bear&amp;lt;/h1&amp;gt;
 &amp;lt;nav&amp;gt;
   &amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#introduction&quot;&amp;gt;Introduction&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#habitat&quot;&amp;gt;Habitat&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;&amp;lt;a href=&quot;#media&quot;&amp;gt;Media&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
  &amp;lt;/nav&amp;gt;
  &amp;lt;div id=&quot;introduction&quot;&amp;gt;
    &amp;lt;h2&amp;gt;About Brown Bears&amp;lt;/h2&amp;gt;
    &amp;lt;p&amp;gt;The brown bear (&amp;lt;em&amp;gt;Ursus arctos&amp;lt;/em&amp;gt;) is native to parts of northern Eurasia and North America. Its conservation status is currently &amp;lt;strong&amp;gt;Least Concern&amp;lt;/strong&amp;gt;.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt; There are many subspecies within the brown bear species, including the
  Atlas bear and the Himalayan brown bear.&amp;lt;/p&amp;gt;
    &amp;lt;a href=&quot;https://en.wikipedia.org/wiki/Brown_bear&quot; target=&quot;_blank&quot;&amp;gt;Learn More&amp;lt;/a&amp;gt;
    &amp;lt;h3&amp;gt;Species&amp;lt;/h3&amp;gt;
    &amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;Arctos&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Collarus&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Horribilis&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Nelsoni (extinct)&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
    &amp;lt;h3&amp;gt;Features&amp;lt;/h3&amp;gt;
    &amp;lt;p&amp;gt;Brown bears are not always completely brown. Some can be reddish or yellowish. They have very large, curved claws and huge paws. Male brown bears are often 30% larger than female brown bears. They can range from 5 feet to 9 feet from head to toe.&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div id=&quot;habitat&quot;&amp;gt;
    &amp;lt;h2&amp;gt;Habitat&amp;lt;/h2&amp;gt;
    &amp;lt;h3&amp;gt;Countries with Large Brown Bear Populations&amp;lt;/h3&amp;gt;
    &amp;lt;ol&amp;gt;
      &amp;lt;li&amp;gt;Russia&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;United States&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Canada&amp;lt;/li&amp;gt;
    &amp;lt;/ol&amp;gt;
    &amp;lt;h3&amp;gt;Countries with Small Brown Bear Populations&amp;lt;/h3&amp;gt;
    &amp;lt;p&amp;gt;Some countries with smaller brown bear populations include Armenia, Belarus, Bulgaria, China, Finland, France, Greece, India, Japan, Nepal, Poland, Romania, Slovenia, Turkmenistan, and Uzbekistan.&amp;lt;/p&amp;gt;
  &amp;lt;/div&amp;gt;
  &amp;lt;div id=&quot;media&quot;&amp;gt;
   &amp;lt;h2&amp;gt;Media&amp;lt;/h2&amp;gt;
    &amp;lt;img src=&quot;https://content.codecademy.com/courses/web-101/web101-image_brownbear.jpg&quot; /&amp;gt;
    &amp;lt;video src=&quot;https://content.codecademy.com/courses/freelance-1/unit-1/lesson-2/htmlcss1-vid_brown-bear.mp4&quot; height=&quot;240&quot; width=&quot;320&quot; controls&amp;gt;Video not supported&amp;lt;/video&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;

&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;example-2&quot;&gt;Example 2:&lt;/h2&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
 &amp;lt;head&amp;gt;
   &amp;lt;title&amp;gt;Everyday with Isa&amp;lt;/title&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;a href=&quot;#contacnt&quot;&amp;gt;&amp;lt;img src=&quot;https://content.codecademy.com/courses/learn-html/elements-and-structure/profile.jpg&quot; /&amp;gt;
   &amp;lt;h3&amp;gt;by Isabelle Rodriguez | 1 day ago&amp;lt;/h3&amp;gt;
   &amp;lt;h1&amp;gt;An Insider’s Guide to NYFW&amp;lt;/h1&amp;gt;
   &amp;lt;img src=&quot;https://content.codecademy.com/courses/learn-html/elements-and-structure/image-one.jpeg&quot; /&amp;gt;
    &amp;lt;p&amp;gt;&amp;lt;a href=&quot;https://en.wikipedia.org/wiki/New_York_Fashion_Week&quot; target=&quot;_blank&quot;&amp;gt;NYFW&amp;lt;/a&amp;gt; can be both amazingly fun &amp;amp; incredibly overwhelming, especially if you’ve never been. Luckily, I’m here to give you an insider’s guide and make your first show a pleasurable experience. By taking my tips and tricks, and following your gut, you’ll have an unforgettable experience!&amp;lt;/p&amp;gt;
    &amp;lt;h2&amp;gt;Getting Tickets &amp;amp; Picking the Shows&amp;lt;/h2&amp;gt;
     &amp;lt;img src=&quot;https://content.codecademy.com/courses/learn-html/elements-and-structure/image-two.jpeg&quot; /&amp;gt;
    &amp;lt;p&amp;gt;If you’re lucky or connected you can get an invite, sans the price tag. But I wasn’t so lucky or connected my first 2 years so I’m here to help you out. First, plan out which shows are most important to you and make a schedule and this is a biggie: SET A BUDGET. If you’re worrying about blowing your cash the whole time you won’t have fun. Then check out prices, days, and times and prioritize the designers you want to see most. Lastly, purchase your tickets and get excited!&amp;lt;/p&amp;gt;
    &amp;lt;h2&amp;gt;Dressing for the Shows&amp;lt;/h2&amp;gt;
       &amp;lt;img src=&quot;https://content.codecademy.com/courses/learn-html/elements-and-structure/image-three.jpeg&quot; /&amp;gt;
    &amp;lt;p&amp;gt;Always be true to your own sense of style, if you don’t you’ll be uncomfortable the whole time and it will show. Remember, NYFW is about expressing yourself and taking in what the designers have chosen to express through their new lines. Also it’s important to wear shoes you’ll be comfortable in all day. Obviously you want to look good, but you’ll be on your feet all day long, so be prepared.&amp;lt;/p&amp;gt;
   &amp;lt;h4&amp;gt;Related Content&amp;lt;/h4&amp;gt;
    &amp;lt;ul&amp;gt;
      &amp;lt;li&amp;gt;How To Style Boyfriend Jeans&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;When Print Is Too Much&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;The Overalls Trend&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Fall’s It Color: Blush&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
    &amp;lt;div id='contacnt'&amp;gt;
      &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;email:&amp;lt;/strong&amp;gt; isa@fashionblog.com&amp;lt;br&amp;gt;
      &amp;lt;strong&amp;gt;phone:&amp;lt;/strong&amp;gt; 917-555-1098&amp;lt;br&amp;gt;
      &amp;lt;strong&amp;gt;address:&amp;lt;/strong&amp;gt; 371 284th St, New York, NY, 10001&amp;lt;/p&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Mohammad Alghadban</name></author><category term="HTML" /><category term="HTML" /><summary type="html">Introduction to HTML Part2</summary></entry></feed>