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

Remove title attribute from anchor element definition slide. #48

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
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
7 changes: 3 additions & 4 deletions class1.html
Original file line number Diff line number Diff line change
Expand Up @@ -470,15 +470,14 @@ <h3>Let's Develop it!</h3>
<!-- Links-->
<section>
<h3>Element: Link</h3>
<p>Links have three components</p>
<p>Links have two components</p>
<ul>
<li>Tag: &lt;a>&lt;/a></li>
<li>Href attribute: "http://www.girldevelopit.com"</li>
<li>Title attribute: "Girl Develop It"</li>
</ul>
<pre><code class="html">&lt;a href="http://www.girldevelopit.com" title="Girl Develop It"&gt;Girl Develop It&lt;/a&gt;<
<pre><code class="html">&lt;a href="http://www.girldevelopit.com"&gt;Girl Develop It&lt;/a&gt;
</code></pre>
<p><a href ="http://www.girldevelopit.com" title="Girl Develop It">Girl Develop It</a></p>
<p><a href ="http://www.girldevelopit.com">Girl Develop It</a></p>
<p>The &lt;a&gt; tag surrounds text or images to turn them into links</p>
</section>

Expand Down