Skip to content

Instantly share code, notes, and snippets.

@abdullahbutt
Created November 22, 2013 11:16
Show Gist options
  • Select an option

  • Save abdullahbutt/7598335 to your computer and use it in GitHub Desktop.

Select an option

Save abdullahbutt/7598335 to your computer and use it in GitHub Desktop.
<em> <dl> <dt> <dd> & "Alt + F3" in sublime text to edit multiple entries
<!DOCTYPE html>
<html>
<head>
<title>Test :)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
</head>
<body>
<!-- <em> </em> tag is used for 'emphasis' .... i-e turns italic !-->
<!-- Press "Alt + F3" to select edit same tag in sublime text !-->
<!-- <dl> tag stands for 'definition list' ,<dt> stands for 'definition term' <dd> stands for 'definition details' !-->
<h1>Things I must do today </h1>
<p><strong>Here</strong> is <em>my</em> Text in Paragraph
</p>
<div>Test Page Dude</div>
<dl>
<dt>Sublime Text
<dd>
A Code Editor
</dd>
</dt>
<dt>Sublime Text
<dd>
A Code Editor
</dd>
</dt>
<dt>Sublime Text
<dd>
A Code Editor
</dd>
</dt>
<dt>Sublime Text
<dd>
A Code Editor
</dd>
</dt>
</dl>
<ol>
<li>
Go to the Mall
</li>
<li>
Shop
</li>
<li>
Get Petrol in Car
</li>
<li>
Come Back home
</li>
</ol>
<ul>
<li>
Go to the Mall
</li>
<li>
Shop
</li>
<li>
Get Petrol in Car
</li>
<li>
Come Back home
</li>
</ul>
<div>Test Page Dude</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment