2.7 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.7 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, localeTitle
| id | title | challengeType | videoUrl | localeTitle | 
|---|---|---|---|---|
| bad87fee1348bd9aedf08816 | Link to External Pages with Anchor Elements | 0 | وصلة إلى الصفحات الخارجية مع عناصر مرساة | 
Description
anchor للربط بمحتوى خارج صفحة الويب الخاصة بك. تحتاج عناصر anchor إلى عنوان ويب مقصود يسمى سمة href . هم أيضا بحاجة إلى مرساة النص. في ما يلي مثال: <a href="https://freecodecamp.org">this links to freecodecamp.org</a> ثم يعرض المتصفح النص "روابط إلى freecodecamp.org" كحلقة يمكنك النقر عليها. وسيأخذك هذا الرابط إلى عنوان الويب https://www.freecodecamp.org . Instructions
a العنصر الذي يربط http://freecatphotoapp.com ولديه "صور القط"، كما لها anchor text . Tests
tests:
  - text: الخاص بك <code>a</code> يجب أن يكون العنصر في <code>anchor text</code> من "صور القط".
    testString: 'assert((/cat photos/gi).test($("a").text()), "Your <code>a</code> element should have the <code>anchor text</code> of "cat photos".");'
  - text: 'تحتاج إلى <code>a</code> العنصر الذي يربط <code>http://freecatphotoapp .com</code>'
    testString: 'assert(/http:\/\/(www\.)?freecatphotoapp\.com/gi.test($("a").attr("href")), "You need an <code>a</code> element that links to <code>http://freecatphotoapp<wbr>.com</code>");'
  - text: تأكد من <code>a</code> عنصر يحتوي على علامة إغلاق.
    testString: 'assert(code.match(/<\/a>/g) && code.match(/<\/a>/g).length === code.match(/<a/g).length, "Make sure your <code>a</code> element has a closing tag.");'
Challenge Seed
<h2>CatPhotoApp</h2>
<main>
  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
Solution
// solution required