Skip to content

Instantly share code, notes, and snippets.

@musray
Created May 16, 2015 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save musray/49b191e4b7cd4323795c to your computer and use it in GitHub Desktop.
Save musray/49b191e4b7cd4323795c to your computer and use it in GitHub Desktop.
VLjLXJ
<!-- My course notes for lesson1 and lesson2.-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div>
<h1>WHAT IS WEB DEVELOPING?</h1>
<p>The basic web developing concerns about making web pages or web applications and get them running on an web site. </p>
<p>To make elegance, functional and responsive web page and web application for every web browser and every device, there's bunch of technology things to be considered.</p>
<p>The most essential aspects about web developing are <em>HTML</em>, <em>CSS</em> and <em>JavaScript.</em></p>
</div>
<div>
<h1>WHY WEB DEVELOPING?</h1>
<p>web developing is a fantastic way to show an idea among lots of people. More important reason for me, it's easy to start.</p>
</div>
<div>
<h1><strong>HTML</strong></h1>
<p><b>HTML</b> is <em>Hyper Text Markup Language</em> for short. It's structured the whole WWW's content.Here are some concepts in the first lessons:</p>
<div>
<ul>
<li>Tags</li>
<li>Block-level element</li>
<li>In-line element</li>
<li>Structure</li>
</ul>
</div>
</div>
<div>
<h1><strong>CSS</strong></h1>
<p>CSS is <em>Cascading Style Sheet</em> for short. Use CSS developers is able to adjust the style of every element specifically, or unify the style for same class of elements avoiding work repetition.Here what I've learned about CSS:</p>
<div>
<ul>
<li>Text decoration</li>
<li>Font</li>
<li>Color</li>
<li>Layout</li>
<li>Hyper Links</li>
<li>......</li>
</ul>
</div>
</div>
<div>
<h1><strong>JAVA SCRIPT</strong></h1>
<p>Not Yet...</p>
</div>
<div>
<h1><strong>MY GEAR</strong></h1>
<p>I use a 2013 Macbook Air 11'. It's strong enough for web surfing and coding.</p>
</div>
<div>
<h1><strong>MY TEXT EDITOR</strong></h1>
<p>I've using VIM for a long time. I'd chosen VIM as the text editor since last year when I started to learn Python. I couldn't recall the real reason for my choice, however, I love VIM as soon as I used to its multiple mode and key strokes, so I don't want to switch to Sublime at this moment.</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment