Skip to content

Instantly share code, notes, and snippets.

@jurnalanas
Last active September 18, 2021 04:03
Show Gist options
  • Save jurnalanas/f37ddf61ebbca63be8838349cedc6419 to your computer and use it in GitHub Desktop.
Save jurnalanas/f37ddf61ebbca63be8838349cedc6419 to your computer and use it in GitHub Desktop.
  • Make a directory called fullstack-course
  • cd into directory
  • list the directory contents
  • cd back out
  • delete the directory
  • Make a page with a heading. Make the heading kinda large, bold, italic and center it across the top of the page.
  • Then add an image of a character / person
  • Write a short paragraph or two telling a little about them. In your description, highlight something in italics.
  • Using an unordered bulleted list, list the things that them would most like to put in the box.
<div>
<h1>This is an h1!</h1>
<h2>This is an h2!</h2>
<h3>This is an h3!</h3>
<h4>This is an h4!</h4>
<h5>This is an h5!</h5>
<h6>This is an h6!</h6>
</div>
<!-- text empasis -->
<div>
<strong>This text is strong.</strong>
<em>This text is emphasized.</em>
</div>
<!-- paragraphs -->
<div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt modi est sapiente in optio quia inventore quis maxime ullam tenetur?</p>
<p>Maxime quibusdam, dolorum quaerat ducimus inventore sunt pariatur et ea dolore ipsam. Distinctio eum nobis officiis quam quasi exercitationem eaque?</p>
<p>Tempore quaerat odit sit rem nihil eligendi error quisquam, natus deleniti molestias voluptate nobis, amet repellendus. Aliquam deserunt quia impedit.</p>
<p>Doloremque expedita earum quidem pariatur amet. Officia ex corporis, repellendus ipsa, cumque quia at voluptas, iste harum dolor debitis labore?</p>
<p>Et quisquam sit nemo ipsam aliquid provident, ullam eligendi aspernatur placeat fuga nostrum molestiae ab nobis obcaecati nesciunt cupiditate neque.</p>
</div>
<!-- images -->
<div>
<img src="https://picsum.photos/200/300" alt="an adorable puppy" />
<img src="https://picsum.photos/200/300" alt="an adorable puppy" />
<img src="https://picsum.photos/200/300" alt="an adorable puppy" />
</div>
<!-- inputs -->
<div>
<input /> <!-- with a trailing slash -->
<input> <!-- without a trailing slash; it's the same thing -->
<input type="color" />
<input type="file" />
<input type="number" />
<input type="datetime-local" />
<input type="radio" />
<input type="checkbox" />
</div>
<!-- textarea -->
<div>
<textarea></textarea>
</div>
<!-- select -->
<div>
<select>
<option value="seattle">Seattle</option>
<option value="portland">Portland</option>
<option value="san-francisco">San Francisco</option>
</select>
</div>
<!-- buttons -->
<div>
<button>Click me! I don't do anything</button>
</div>
<!-- table -->
<table>
<tr>
<td>(0,0)</td>
<td>(1,0)</td>
</tr>
<tr>
<td>(0,1)</td>
<td>(1,1)</td>
</tr>
</table>
<a href="/docs/Web/SVG/Element/circle" target="_blank">
test link
</a>
<!-- for fun -->
<div>
<marquee>This is a really old feature that only works in some browsers. You should never use it for a real website.</marquee>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment