diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/ms/learn/html | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2 translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip |
remove retired locales (#699)
Diffstat (limited to 'files/ms/learn/html')
-rw-r--r-- | files/ms/learn/html/howto/author_fast-loading_html_pages/index.html | 134 | ||||
-rw-r--r-- | files/ms/learn/html/howto/index.html | 153 | ||||
-rw-r--r-- | files/ms/learn/html/index.html | 48 | ||||
-rw-r--r-- | files/ms/learn/html/multimedia_and_embedding/responsive_images/index.html | 171 |
4 files changed, 0 insertions, 506 deletions
diff --git a/files/ms/learn/html/howto/author_fast-loading_html_pages/index.html b/files/ms/learn/html/howto/author_fast-loading_html_pages/index.html deleted file mode 100644 index 8f122791ac..0000000000 --- a/files/ms/learn/html/howto/author_fast-loading_html_pages/index.html +++ /dev/null @@ -1,134 +0,0 @@ ---- -title: Tip menulis Laman HTML dengan pemuatan pantas -slug: Learn/HTML/Howto/Author_fast-loading_HTML_pages -translation_of: Learn/HTML/Howto/Author_fast-loading_HTML_pages -original_slug: HTML/Tip_menulis_LamanHTML_dengan_pemuatan_pantas ---- -<p>These tips are based upon common knowledge and experimentation.</p> -<p>An optimized web page not only provides for a more responsive site for your visitors, but also reduces the load on your web servers and Internet connection. This can be crucial for high volume sites or sites which have a spike in traffic due to unusual circumstances such as breaking news stories.</p> -<p>Optimizing page load performance is not just for content which will be viewed by narrow band dialup or mobile device visitors. It is just as important for broadband content and can lead to dramatic improvements even for your visitors with the fastest connections.</p> -<h2 id="Tips" name="Tips">Tips</h2> -<h3 id="Reduce_page_weight" name="Reduce_page_weight">Reduce page weight</h3> -<p>Page weight is by far the most important factor in page-load performance.</p> -<p>Reducing page weight through the elimination of unnecessary whitespace and comments, commonly known as minimization, and by moving inline script and CSS into external files, can improve download performance with minimal need for other changes in the page structure.</p> -<p>Tools such as <a class="external" href="http://tidy.sourceforge.net/">HTML Tidy</a> can automatically strip leading whitespace and extra blank lines from valid HTML source. Other tools can "compress" JavaScript by reformatting the source or by obfuscating the source and replacing long indentifiers with shorter versions.</p> -<h3 id="Minimize_the_number_of_files" name="Minimize_the_number_of_files">Minimize the number of files</h3> -<p>Reducing the number of files referenced in a web page lowers the number of <a href="/en-US/docs/HTTP" title="en-US/docs/HTTP">HTTP</a> connections required to download a page.</p> -<p>Depending on a browser's cache settings, it may send an <code>If-Modified-Since</code> request to the web server for each CSS, JavaScript or image file, asking whether the file has been modified since the last time it was downloaded.</p> -<p>By reducing the number of files that are referenced within a web page, you reduce the time required for these requests to be sent, and for their responses to be received.</p> -<p>If you use background images a lot in your css, you can reduce the amount of HTTP look-ups needed by combining the images into one, known as an image sprite. Then you just apply the same image each time you need it for a background, and adjust the x/y coordinates appropriately. This technique works best with elements that will have limited dimensions, and will not work for every use of a background image. However the fewer http requests and single image caching can help reduce pageload time.</p> -<p>Too much time spent querying the last-modified time of referenced files can delay the initial display of a web page, since the browser must check the modification time for each CSS or JavaScript file, before rendering the page.</p> -<h3 id="Reduce_domain_lookups" name="Reduce_domain_lookups">Reduce domain lookups</h3> -<p>Since each separate domain costs time in a DNS lookup, page-load time will grow along with the number of separate domains appearing in CSS link(s) and JavaScript and image src(es).</p> -<p>This may not always be practical; however, you should always take care to use only the minimum necessary number of different domains in your pages.</p> -<h3 id="Cache_reused_content" name="Cache_reused_content">Cache reused content</h3> -<p>Make sure that any content that can be cached, is cached, and with appropriate expiration times.</p> -<p>In particular, pay attention to the <code>Last-Modified</code> header. It allows for efficient page caching; by means of this header, information is conveyed to the user agent about the file it wants to load, such as when it was last modified. Most web servers automatically append the <code>Last-Modified</code> header to static pages (e.g. <code>.html</code>, <code>.css</code>), based on the last-modified date stored in the file system. With dynamic pages (e.g. <code>.php</code>, <code>.aspx</code>), this, of course, can't be done, and the header is not sent.</p> -<p>So, in particular for pages which are generated dynamically, a little research on this subject is beneficial. It can be somewhat involved, but it will save a lot in page requests on pages which would normally not be cacheable.</p> -<p>More information:</p> -<ol> - <li><a class="external" href="http://fishbowl.pastiche.org/2002/10/21/http_conditional_get_for_rss_hackers">HTTP Conditional Get for RSS Hackers</a></li> - <li><a class="external" href="http://annevankesteren.nl/archives/2005/05/http-304">HTTP 304: Not Modified</a></li> - <li><a class="external" href="http://www.cmlenz.net/blog/2005/05/on_http_lastmod.html">On HTTP Last-Modified and ETag</a></li> -</ol> -<h3 id="Optimally_order_the_components_of_the_page" name="Optimally_order_the_components_of_the_page">Optimally order the components of the page</h3> -<p>Download page content first, along with any CSS or JavaScript that may be required for its initial display, so that the user gets the quickest apparent response during page-loading. This content is typically text, and can therefore benefit from text compression in transit, thus providing an even quicker response to the user.</p> -<p>Any dynamic features that require the page to complete loading before being used, should be initially disabled, and then only enabled after the page has loaded. This will cause the JavaScript to be loaded after the page contents, which will improve the overall appearance of the page load.</p> -<h3 id="Reduce_the_number_of_inline_scripts" name="Reduce_the_number_of_inline_scripts">Reduce the number of inline scripts</h3> -<p>Inline scripts can be expensive for page loading, since the parser must assume that an inline script could modify the page structure while parsing is in progress. Reducing the use of inline scripts in general, and reducing the use of <code>document.write()</code> to output content in particular, can improve overall page loading. Use modern <a href="/en-US/docs/AJAX" title="en-US/docs/AJAX">AJAX</a> methods to manipulate page content for modern browsers, rather than the older approaches based on <code>document.write()</code>.</p> -<h3 id="Use_modern_CSS_and_valid_markup" name="Use_modern_CSS_and_valid_markup">Use modern CSS and valid markup</h3> -<p>Use of modern CSS reduces the amount of markup, can reduce the need for (spacer) images, in terms of layout, and can very often replace images of stylized text -- that "cost" much more than the equivalent text-and-CSS.</p> -<p>Using valid markup has other advantages. First, browsers will have no need to perform error-correction when parsing the HTML. ((This is aside from the philosophical issue of whether to allow format variation in user input, and then programmatically "correct" or normalize it; or whether, instead, to enforce a strict, no-tolerance input format)).</p> -<p>Moreover, valid markup allows for the free use of other tools which can <em>pre-process</em> your web pages. For example, <a class="external" href="http://tidy.sourceforge.net/">HTML Tidy</a> can remove whitespace and optional ending tags; however, it will refuse to run on a page with serious markup errors.</p> -<h3 id="Chunk_your_content" name="Chunk_your_content">Chunk your content</h3> -<p>Tables for layouts are a legacy method that should not be used any more. Layouts utilizing {{ HTMLElement("div") }} blocks, and in the near future, <a href="/en-US/docs/CSS/Using_CSS_multi-column_layouts" title="en-US/docs/CSS3_Columns">CSS3 Multi-column Layout</a> or <a href="/en-US/docs/Using_flexbox" title="en-US/docs/Using_flexbox">CSS3 Flexible Box Layout</a>, should be used instead.</p> -<p>Tables are still considered valid markup, but should be used for displaying tabular data. To help the browser render your page quicker, you should avoid nesting your tables.</p> -<p>Rather than deeply nesting tables as in:</p> -<pre><TABLE> - <TABLE> - <TABLE> - ... - </TABLE> - </TABLE> -</TABLE></pre> -<p>use non-nested tables or divs as in</p> -<pre><TABLE>...</TABLE> -<TABLE>...</TABLE> -<TABLE>...</TABLE> -</pre> -<p>See also: <a class="external" href="http://www.w3.org/TR/css3-multicol/" title="http://www.w3.org/TR/css3-multicol/">CSS3 Multi-column Layout Spec</a> and <a class="external" href="http://www.w3.org/TR/css3-flexbox/" title="http://www.w3.org/TR/css3-flexbox/">CSS3 Flexible Box Layout</a></p> -<h3 id="Specify_sizes_for_images_and_tables" name="Specify_sizes_for_images_and_tables">Specify sizes for images and tables</h3> -<p>If the browser can immediately determine the height and/or width of your images and tables, it will be able to display a web page without having to reflow the content. This not only speeds the display of the page but prevents annoying changes in a page's layout when the page completes loading. For this reason, <code>height</code> and <code>width</code> should be specified for images, whenever possible.</p> -<p>Tables should use the CSS selector:property combination:</p> -<pre> table-layout: fixed; -</pre> -<p>and should specify widths of columns using the <code>COL</code> and <code>COLGROUP</code> html tags.</p> -<h3 id="Choose_your_user-agent_requirements_wisely" name="Choose_your_user-agent_requirements_wisely">Choose your user-agent requirements wisely</h3> -<p>To achieve the greatest improvements in page design, make sure that reasonable user-agent requirements are specified for projects. Do not require your content to appear pixel-perfect in all browsers, especially not in down-version browsers.</p> -<p>Ideally, your basic minimum requirements should be based on the consideration of modern browsers that support the relevant standards. This can include: Firefox 3.6+ on any platform, Internet Explorer 8.0+ on Windows, Opera 10+ on Windows, and Safari 4 on Mac OS X.</p> -<p>Note, however, that many of the tips listed in this article are common-sense techniques which apply to any user agent, and can be applied to any web page, regardless of browser-support requirements.</p> -<h2 id="Example_page_structure" name="Example_page_structure">Example page structure</h2> -<p>· <code>HTML</code></p> -<dl> - <dd> - · <code>HEAD</code></dd> -</dl> -<dl> - <dd> - <dl> - <dd> - · <code>LINK </code>...<br> - CSS files required for page appearance. Minimize the number of files for performance while keeping unrelated CSS in separate files for maintenance.</dd> - </dl> - </dd> -</dl> -<dl> - <dd> - <dl> - <dd> - · <code>SCRIPT </code>...<br> - JavaScript files for functions <strong>required</strong> during the loading of the page, but not any DHTML that can only run after page loads.</dd> - <dd> - Minimize the number of files for performance while keeping unrelated JavaScript in separate files for maintenance.</dd> - </dl> - </dd> -</dl> -<dl> - <dd> - · <code>BODY</code></dd> - <dd> - · User visible page content in small chunks (tables / divs) that can be displayed without waiting for the full page to download.</dd> -</dl> -<dl> - <dd> - <dl> - <dd> - · <code>SCRIPT </code>...<br> - Any scripts which will be used to perform DHTML. DHTML script typically can only run after the page has completely loaded and all necessary objects have been initialized. There is no need to load these scripts before the page content. That only slows down the initial appearance of the page load.</dd> - <dd> - Minimize the number of files for performance while keeping unrelated JavaScript in separate files for maintenance.</dd> - <dd> - If any images are used for rollover effects, you should preload them here after the page content has downloaded.</dd> - </dl> - </dd> -</dl> -<h2 id="Example_page_structure" name="Example_page_structure">Use async and defer, if possible</h2> -<p>Make the javascript scripts such that they are compatible with both the <a href="https://developer.mozilla.org/en-US/docs/HTML/Element/script#Attributes" title="https://developer.mozilla.org/en-US/docs/HTML/Element/script">async</a> and the <a href="https://developer.mozilla.org/en-US/docs/HTML/Element/script#Attributes" title="https://developer.mozilla.org/en-US/docs/HTML/Element/script">defer</a> and use <a href="https://developer.mozilla.org/en-US/docs/HTML/Element/script#Attributes" title="https://developer.mozilla.org/en-US/docs/HTML/Element/script">async</a> whenever possible, specially if you have multiple script tags.<br> - With that, the page can stop rendering while javascript is still loading. Otherwise the browser will not render anything that is after the script tags that do not have these atributes.</p> -<p>Note: Even though these attibutes do help a lot for the first time a page is loaded, you should use them but not rely that it will work in all browsers. If you follow all guidelines to make good javascript code, there is no need to change your code.</p> -<h2 id="Related_Links" name="Related_Links">Related Links</h2> -<ul> - <li>Book: <a class="external" href="http://www.websiteoptimization.com/">"Speed Up Your Site" by Andy King</a></li> - <li><a class="external" href="http://webmonkey.wired.com/webmonkey/design/site_building/tutorials/tutorial2.html">Site Optimization Tutorial</a> (WebMonkey)</li> - <li>The excellent and very complete <a class="external" href="http://developer.yahoo.com/performance/rules.html" title="http://developer.yahoo.com/performance/rules.html">Best Practices for Speeding Up Your Web Site</a> (Yahoo!)</li> -</ul> -<div class="originaldocinfo"> - <h2 id="Original_Document_Information" name="Original_Document_Information">Original Document Information</h2> - <ul> - <li>Author(s): Bob Clary, Technology Evangelist, Netscape Communications</li> - <li>Last Updated Date: Published 04 Apr 2003</li> - <li>Copyright Information: Copyright © 2001-2003 Netscape. All rights reserved.</li> - <li>Note: This reprinted article was originally part of the DevEdge site.</li> - </ul> -</div> -<p> </p> diff --git a/files/ms/learn/html/howto/index.html b/files/ms/learn/html/howto/index.html deleted file mode 100644 index 1b029ab815..0000000000 --- a/files/ms/learn/html/howto/index.html +++ /dev/null @@ -1,153 +0,0 @@ ---- -title: Learn HTML to solve problems -slug: Learn/HTML/Howto -tags: - - CodingScripting - - HTML - - NeedsTranslation - - TopicStub -translation_of: Learn/HTML/Howto ---- -<p>Once you've covered <a href="/en-US/Learn/Getting_started_with_the_web/HTML_basics">the basics</a>, there isn't one right path to learn {{Glossary("HTML")}}. You can pick up whatever you like at your own pace. HTML is simply a set of {{glossary("tag","tags")}} you can use to set up your document structure and add extra functionality to your document. The following articles explain thoroughly, with full working examples, how to use HTML for the most common, frequent Web development tasks. If you need a quick explanation of a tag, please head over to our <a href="/en-US/docs/Web/HTML/Reference">HTML reference</a>.</p> - -<h2 id="Common_use_cases">Common use cases</h2> - -<p>HTML covers a lot of very common use cases in Web design. It's highly likely you'll come across these scenarios:</p> - -<div class="column-container"> -<div class="column-half"> -<h3 id="Basic_structure">Basic structure</h3> - -<p>The most basic application of HTML is document structure. If you're new to HTML you should start with this.</p> - -<ul> - <li><a href="/en-US/Learn/HTML/Howto/Create_a_basic_HTML_document">How to create a basic HTML document</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Divide_a_webpage_into_logical_sections">How to divide a webpage into logical sections</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Set_up_a_proper_title_hierarchy">How to set up a proper title hierarchy</a></li> -</ul> - -<h3 id="Basic_text-level_semantics">Basic text-level semantics</h3> - -<p>HTML specializes in providing semantic information for a document, so HTML answers many questions you might have about how to get your message across best in your document.</p> - -<ul> - <li><a href="/en-US/Learn/HTML/Howto/Create_list_of_items_with_HTML">How to create list of items with HTML</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Emphasize_content_or_indicate_that_text_is_important">How to stress or emphasize content</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Emphasize_content_or_indicate_that_text_is_important">How to indicate that text is important</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Display_computer_code_with_HTML">How to display computer code with HTML</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Indicate_exponential_notation_with_HTML">How to indicate exponential notation with HTML</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Provide_contact_information_within_a_webpage">How to provide contact information within a webpage</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Annotate_images_and_graphics">How to annotate images and graphics</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Mark_abbreviations_and_make_them_understandable">How to mark abbreviations and make them understandable</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Add_citations_to_webpages">How to add citations to webpages</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Define_terms_with_HTML">How to define terms with HTML</a></li> -</ul> -</div> - -<div class="column-half"> -<h3 id="Hyperlinks">Hyperlinks</h3> - -<p>One of the main reasons for HTML is make navigation easy with {{Glossary("hyperlink", "hyperlinks")}}, which can be used in many different ways:</p> - -<ul> - <li><a href="/en-US/Learn/HTML/Howto/Create_a_hyperlink">How to create a hyperlink</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Create_list_of_items_with_HTML">How to create a table of contents with HTML</a></li> -</ul> - -<h3 id="Images_multimedia">Images & multimedia</h3> - -<ul> - <li><a href="/en-US/Learn/HTML/Howto/Add_images_to_a_webpage">How to add images to a webpage</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Add_audio_or_video_content_to_a_webpage">How to add video content to a webpage</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Add_audio_or_video_content_to_a_webpage">How to add audio content to a webpage</a></li> -</ul> - -<h3 id="Scripting_styling">Scripting & styling</h3> - -<p>HTML only sets up document structure. To solve presentation issues, use {{glossary("CSS")}}, or use scripting to make your page interactive.</p> - -<ul> - <li><a href="/en-US/Learn/HTML/Howto/Use_CSS_within_a_webpage">How to use CSS within a webpage</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Use_JavaScript_within_a_webpage">How to use JavaScript within a webpage</a></li> -</ul> - -<h3 id="Embedded_content">Embedded content</h3> - -<ul> - <li><a href="/en-US/Learn/HTML/Howto/Embed_a_webpage_within_another_webpage">How to embed a webpage within another webpage</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Add_Flash_content_within_a_webpage">How to add Flash content within a webpage</a></li> -</ul> -</div> -</div> - -<h2 id="Uncommon_or_advanced_problems">Uncommon or advanced problems</h2> - -<p>Beyond the basics, HTML is very rich and offers advanced features for solving complex problems. These articles help you tackle the less common use cases you may face:</p> - -<div class="column-container"> -<div class="column-half"> -<h3 id="Forms">Forms</h3> - -<p>Forms are a complex HTML structure made to send data from a webpage to a web server. We encourage you to go over our <a href="/en-US/docs/Web/Guide/HTML/Forms">full dedicated guide</a>. Here is where you should start:</p> - -<ul> - <li><a href="/en-US/docs/Web/Guide/HTML/Forms/My_first_HTML_form">How to create a simple Web form</a></li> - <li><a href="/en-US/docs/Web/Guide/HTML/Forms/How_to_structure_an_HTML_form">How to structure a Web form</a></li> -</ul> - -<h3 id="Tabular_information">Tabular information</h3> - -<p>Some information, called tabular data, needs to be organized into tables with columns and rows. It's one of the most complex HTML structures, and mastering it is not easy:</p> - -<ul> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Create_a_data_spreadsheet">How to create a data spreadsheet</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Make_HTML_tables_accessible">How to make HTML tables accessible</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Optimize_HTML_table_rendering">How to optimize HTML table rendering</a></li> -</ul> - -<h3 id="Data_representation">Data representation</h3> - -<ul> - <li><a class="new" href="/en-US/Learn/HTMLHowto/Represent_numeric_values_with_HTML">How to represent numeric values with HTML</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Associate_human_readable_content_with_arbitrary_computer_data_structures">How to associate human readable content with arbitrary computer data structures</a></li> -</ul> - -<h3 id="Interactivity">Interactivity</h3> - -<ul> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Create_collapsible_content_with_HTML">How to create collapsible content with HTML</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Add_context_menus_to_a_webpage">How to add context menus to a webpage</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Create_dialog_boxes_with_HTML">How to create dialog boxes with HTML</a></li> -</ul> -</div> - -<div class="column-half"> -<h3 id="Advanced_text_semantics">Advanced text semantics</h3> - -<ul> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Take_control_of_HTML_line_breaking">How to take control of HTML line breaking</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Mark_text_insertion_and_deletion">How to mark changes (added and removed text)</a></li> -</ul> - -<h3 id="Advanced_images_multimedia">Advanced images & multimedia</h3> - -<ul> - <li><a href="/en-US/Learn/HTML/Howto/Add_responsive_image_to_a_webpage">How to add responsive image to a webpage</a></li> - <li><a href="/en-US/Learn/HTML/Howto/Add_vector_image_to_a_webpage">How to add vector image to a webpage</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Add_a_hit_map_on_top_of_an_image">How to add a hit map on top of an image</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Create_dynamic_and_interactive_images">How to create dynamic and interactive images</a></li> -</ul> - -<h3 id="Internationalization">Internationalization</h3> - -<p>HTML is not monolingual. It provides tools to handle common internationalization issues.</p> - -<ul> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Add_multiple_languages_into_a_single_webpage">How to add multiple languages into a single webpage</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Handle_Japanese_ruby_characters">How to handle Japanese ruby characters</a></li> - <li><a class="new" href="/en-US/Learn/HTML/Howto/Display_time_and_date_with_HTML">How to display time and date with HTML</a></li> -</ul> -</div> -</div> - -<p><span class="hidden"> </span><span class="hidden"> </span><span class="hidden"> </span><span class="hidden"> </span> </p> diff --git a/files/ms/learn/html/index.html b/files/ms/learn/html/index.html deleted file mode 100644 index 826dc8c29c..0000000000 --- a/files/ms/learn/html/index.html +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: HTML -slug: Learn/HTML -tags: - - Beginner - - CodingScripting - - HTML - - NeedsContent - - NeedsTranslation - - TopicStub -translation_of: Learn/HTML ---- -<div>{{IncludeSubnav("/en-US/Learn")}}</div> -<p>{{Glossary('HTML')}} is a major Web technology that defines the structure of a webpage. If you're looking to build websites, you should know about HTML.</p> - -<p>It's not hard to pick up the basics, but HTML is also a broad technology with many complex features, so there isn't one correct learning pathway. We suggest you start with the following pages to pick up some skills and knowledge. Move from the first basic skill to the last advanced skill, or just pick a page that looks interesting to you!</p> - -<div class="row topicpage-table"> -<div class="section"> -<h2 id="The_basics">The basics</h2> - -<p>Start here if you aren't familiar with HTML:</p> - -<dl> - <dt><a href="/en-US/docs/Web/Guide/HTML/Introduction">Introduction to HTML</a></dt> - <dd>If you've ever wondered what goes on behind the scenes in your Web browser, here's where you can start learning.</dd> - <dt><a href="/en-US/Learn/HTML/Howto">Solve common problems with HTML</a></dt> - <dd>This series of articles is here to help use HTML to solve very common problems when creating a webpage: Dealing with titles, adding images or videos, emphazing content, starting using form, etc.</dd> - <dt><a href="/en-US/Learn/HTML/Write_a_simple_page_in_HTML">Write a simple page in HTML</a></dt> - <dd>In this article you will learn how to create a simple webpage.</dd> - <dt><a href="/en-US/Learn/HTML/HTML_tags">What are HTML tags and how to use them</a></dt> - <dd>This article covers the very basics of HTML. Find out what tags are and how to use them.</dd> -</dl> -</div> - -<div class="section"> -<h2 id="In_depth">In depth</h2> - -<p>Once you're a bit more used to HTML, here's some more detailed stuff to explore:</p> - -<dl> - <dt><a href="/en-US/docs/Web/HTML/Reference">HTML reference</a></dt> - <dd>In our extensive reference guide, you'll find details about each HTML element and attribute.</dd> -</dl> -</div> -</div> - -<p> </p> diff --git a/files/ms/learn/html/multimedia_and_embedding/responsive_images/index.html b/files/ms/learn/html/multimedia_and_embedding/responsive_images/index.html deleted file mode 100644 index ef91b7d478..0000000000 --- a/files/ms/learn/html/multimedia_and_embedding/responsive_images/index.html +++ /dev/null @@ -1,171 +0,0 @@ ---- -title: Add responsive images to a webpage -slug: Learn/HTML/Multimedia_and_embedding/Responsive_images -translation_of: Learn/HTML/Multimedia_and_embedding/Responsive_images -original_slug: Learn/HTML/Howto/Add_responsive_image_to_a_webpage ---- -<div class="summary"> -<p><span class="seoSummary">Learn about HTML features you can use to adapt your site's images to various screen sizes and display resolutions.</span></p> -</div> - -<table class="learn-box nostripe standard-table"> - <tbody> - <tr> - <th scope="row">Prerequisites:</th> - <td>You should already know how to <a href="/en-US/Learn/HTML/Write_a_simple_page_in_HTML">create a basic HTML document</a> and how to <a href="https://developer.mozilla.org/en-US/Learn/HTML/Howto/Add_images_to_a_webpage">add static images to a webpage.</a></td> - </tr> - <tr> - <th scope="row">Objective:</th> - <td>Learn how to feed multiple source files to your {{htmlelement("img")}} element, so the browser can pull the right image for the occasion.</td> - </tr> - </tbody> -</table> - -<div class="note"> -<p><strong>Note:</strong> Vector images are the ultimate responsive images because the files are small while the images are scalable to any size without loss of definition. <a href="https://developer.mozilla.org/en-US/Learn/HTML/Howto/Add_vector_image_to_a_webpage">Use vector images</a> whenever you can; they're even more effective than the techniques described here. This article demonstrates how to use multiple versions of a bitmap image, in different sizes, to provide the best possible output given the current screen size and resolution.</p> - -<p>Note also that while this article discusses how to implement responsive images in HTML, <a href="http://blog.cloudfour.com/responsive-images-101-part-8-css-images/">sometimes it makes more sense to use CSS</a>.</p> -</div> - -<h2 id="Why_responsive_images">Why responsive images?</h2> - -<p>Here's the problem we're solving:</p> - -<p>On a webpage, you have a box that must be filled by an image. More precisely, the box must be filled by pixels, so many wide by so many tall. Just how many pixels wide and tall depends on your visitor's device.</p> - -<p>You also have an image file, a set number of pixels wide and a set number of pixels tall. The image naturally should display in a box the same number of pixels wide and tall as the image. If the box is significantly too big, the image doesn't have enough pixels and it's going to look grainy. If the box is significantly too small, you're wasting bandwidth and slowing down your page by loading a larger image than you need.</p> - -<p><em>Responsive images </em>solves this problem by letting you offer the browser several image files, all showing the same thing but containing different numbers of pixels. That way the browser can load an image that will look sharp enough but won't needlessly slow down the page.</p> - -<h2 id="So_how_do_you_do_it">So how do you do it?</h2> - -<p>In this section, we'll solve what is, by far, the most common problem: displaying identical image content, just larger or smaller depending on the device. In the next section, we'll look at some less common scenarios.</p> - -<p>Remember the {{htmlelement("img")}} element? It lets you point the browser to a single source file:</p> - -<pre class="brush: html"><img src="chalet.jpg" alt="Quaint wooden cottage in the Alps"></pre> - -<p>We can use two new attributes, {{htmlattrxref("srcset", "img")}} and {{htmlattrxref("sizes", "img")}} <code>sizes</code> (<strong>in addition to</strong> {{htmlattrxref("alt", "img")}} and {{htmlattrxref("src", "img")}}), to provide several additional source images and enough information to help the browser pick the right one. It looks like this when you're done:</p> - -<pre class="brush: html"><img - src="chalet.jpg" - alt="Quaint wooden cottage in the Alps" - srcset=" - chalet-256.jpg 256w, - chalet-512.jpg 512w, - chalet-1024.jpg 1024w" - sizes=" - (max-width: 500px) 100vw, - (max-width: 900px) 40vw, - 400px"> -</pre> - -<p><code>srcset</code> and <code>sizes</code> each contain comma-separated lists.</p> - -<p><strong>For <code>srcset</code>: </strong>Between the commas, write</p> - -<ol> - <li>an <strong>image filename</strong> (<code>chalet-256.jpg</code>)</li> - <li>a space</li> - <li>the image's <strong>inherent width in pixels</strong> (<code>256w</code>)</li> -</ol> - -<p><strong>For <code>sizes</code>: </strong>Between the commas, write</p> - -<ol> - <li>a <strong>media condition</strong> (<code>(max-width:500px)</code>)</li> - <li>a space</li> - <li>the <strong>width of the slot</strong> the image will fill when the media condition is true (<code>100vw</code>)</li> -</ol> - -<div class="note"> -<ul> - <li>For the slot width, you may provide an absolute length (<code>px</code>, <code>em</code>) or a relative length (<code>vw</code>, that is, percent of viewport width). You may also provide a combination using {{cssxref("calc")}}.</li> - <li>The last slot width is the default (for when no media condition is true). Therefore, the last slot width has <strong>no</strong> media condition.</li> - <li><code>max-width</code> simply means, "if the user's screen is no wider than X pixels".</li> - <li>The browser ignores everything after the first matching condition. Pay attention to the order of the media conditions.</li> -</ul> -</div> - -<div class="note"> -<p><strong>Why can't the browser just look at the CSS to find out the width of the image slot? </strong></p> - -<p>Because the browser's preloader starts downloading images before the main parser has a chance to interpret CSS and JavaScript. You want that, because images are heavy and circumventing the preloader may add another 20% on to your page load time.</p> -</div> - -<h2 id="Advanced_scenarios">Advanced scenarios</h2> - -<h3 id="Images_at_different_resolutions_but_one_real-world_size">Images at different resolutions but one real-world size</h3> - -<p>If you're supporting multiple display densities, but everyone sees your image at the same real-world size, you should use <code>srcset</code> with x-descriptors and without <code>sizes</code>:</p> - -<pre class="brush: html"><img - src="chalet.jpg" - alt="Quaint wooden cottage in the Alps" - srcset="chalet.jpg, - chalet-1-5x.jpg 1.5x, - chalet-2x.jpg 2x, - chalet-3x.jpg 3x"> -</pre> - -<div class="note"> -<ul> - <li> - <p>Note that <code>1x</code> is implied.</p> - </li> - <li> - <p><code>x</code> means, "this many device pixels for one CSS pixel"</p> - </li> -</ul> -</div> - -<h3 id="Art_direction">Art direction</h3> - -<p><strong>Art direction</strong> means cropping an image either 1) to make the main subject easier to see when the image is small or 2) to make a landscape image suitable for a portrait slot (and vice versa). (However, it must be the same image content in all cases. To, say, show phone users a jet and desktop users a ladybug is a misuse of the responsive image mechanism.)<br> - Art direction is a more complex problem, and needs a more complex solution: the {{htmlelement("picture")}} element. <code><picture></code> is a wrapper containing several {{htmlelement("source")}} elements, followed by the all-important {{htmlelement("img")}} element:</p> - -<pre class="brush: html"><picture> - <source - media="(min-width: 1000px)" - srcset="chalet-desktop.jpg"> - <source - media="(min-width: 700px)" - srcset="chalet-tablet.jpg"> - <img src="chalet-phone.jpg" alt="Quaint wooden cottage in the Alps"> -</picture> -</pre> - -<ul> - <li>Just like <code><img></code>, <code><source></code> can take <code>srcset</code> and <code>sizes</code>. In a responsive images scenario, do not use <code><source></code> and <code>src</code> together.</li> - <li><code><source></code> may also take a <code>media</code> attribute containing a CSS <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries">media query</a>. Use <code>media</code> only in an art direction scenario, because it leaves the browser no choice of which image to use. When you do use <code>media</code>, don't offer media conditions within <code>sizes</code>.</li> - <li><strong>In all cases, you must provide an <code><img></code> element, with <code>src</code> and <code>alt</code>, right before <code></picture></code>, otherwise no images will appear.</strong></li> -</ul> - -<h3 id="Use_modern_image_formats_boldly">Use modern image formats boldly</h3> - -<p>There are several exciting new image formats (think WebP and JPEG-2000) that can maintain a low file size and high quality at the same time. However, browser support is spotty.</p> - -<p><code><picture></code> lets us continue catering to older browsers. Supply MIME types inside <code>type</code> attributes so the browser can immediately reject unsupported file types:</p> - -<pre class="brush: html"><picture> - <source type="image/svg+xml" srcset="pyramid.svg"> - <source type="image/webp" srcset="pyramid.webp"> - <img src="pyramid.png" alt="regular pyramid built from four equilateral triangles"> -</picture> -</pre> - -<ul> - <li>Do <em>not </em>use the <code>media</code> attribute, unless you also need art direction.</li> - <li>In a <code><source></code> element, you can only refer to images of the type declared in <code>type</code>.</li> - <li>As before, you're welcome to use comma-separated lists with <code>srcset</code> and <code>sizes</code>, as needed.</li> -</ul> - -<h2 id="Learn_more">Learn more</h2> - -<ul> - <li><a href="http://blog.cloudfour.com/responsive-images-101-definitions">Jason Grigsby's excellent introduction to responsive images</a></li> - <li>{{htmlelement("img")}}</li> - <li>{{htmlelement("picture")}}</li> - <li>{{htmlelement("source")}}</li> - <li><a href="http://responsiveimages.org/">Responsive Images Community Group</a></li> -</ul> |