Derniers tutoriels de développement web

Responsive Web Design HTML


Votre page Web doit bien paraître et être facile à utiliser, quel que soit l'appareil.


Qu'est-ce que Responsive Web Design?

Responsive Web Design rend votre page Web bien paraître sur tous les appareils (desktops, tablets, and phones) de (desktops, tablets, and phones) les (desktops, tablets, and phones) les (desktops, tablets, and phones) .

Responsive Web Design est sur l'utilisation de CSS et HTML pour redimensionner, cacher, rétrécir, agrandir ou déplacer le contenu pour le faire paraître bien sur un écran:


Créer votre propre Responsive Design

Une façon de créer un design réactif, est de créer vous-même:

Exemple

<!DOCTYPE html>
<html lang="en-us">
<head>
<style>
.city {
    float: left;
    margin: 5px;
    padding: 15px;
    width: 300px;
    height: 300px;
    border: 1px solid black;
}
</style>
</head>
<body>

<h1>Responsive Web Design Demo</h1>

<div class="city">
  <h2>London</h2>
  <p>London is the capital city of England.</p>
  <p>It is the most populous city in the United Kingdom,
  with a metropolitan area of over 13 million inhabitants.</p>
</div>

<div class="city">
  <h2>Paris</h2>
  <p>Paris is the capital of France.</p>
  <p>The Paris area is one of the largest population centers in Europe,
  with more than 12 million inhabitants.</p>
</div>

<div class="city">
  <h2>Tokyo</h2>
  <p>Tokyo is the capital of Japan.</p>
  <p>It is the center of the Greater Tokyo Area,
  and the most populous metropolitan area in the world.</p>
</div>

</body>
</html>
Essayez vous - même »

L'utilisation W3.CSS

Une autre façon de créer un design réactif, est d'utiliser une feuille de style réactif, comme W3.CSS

W3.CSS il est facile de développer des sites qui ont l'air agréable à toute taille; bureau, ordinateur portable, tablette ou téléphone:

W3.CSS Demo

Redimensionner cette page réactif!

Londres

Londres est la capitale de l'Angleterre.

Il est la ville la plus peuplée du Royaume-Uni, avec une région métropolitaine de plus de 13 millions d'habitants.

Paris

Paris est la capitale de la France.

La région parisienne est l'un des plus grands centres de population en Europe, avec plus de 12 millions d'habitants.

Tokyo

Tokyo est la capitale du Japon.

Il est le centre de la région du Grand Tokyo et la région métropolitaine la plus peuplée du monde.

Exemple

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<body>

<div class="w3-container w3-orange">
  <h1>W3.CSS Demo</h1>
  <p>Resize this responsive page!</p>
</div>

<div class="w3-row-padding">

<div class="w3-third">
  <h2>London</h2>
  <p>London is the capital city of England.</p>
  <p>It is the most populous city in the United Kingdom,
  with a metropolitan area of over 13 million inhabitants.</p>
</div>

<div class="w3-third">
  <h2>Paris</h2>
  <p>Paris is the capital of France.</p>
  <p>The Paris area is one of the largest population centers in Europe,
  with more than 12 million inhabitants.</p>
</div>

<div class="w3-third">
  <h2>Tokyo</h2>
  <p>Tokyo is the capital of Japan.</p>
  <p>It is the center of the Greater Tokyo Area,
  and the most populous metropolitan area in the world.</p>
</div>

</div>

</body>
</html>
Essayez vous - même »

Pour en savoir plus sur W3.CSS, lisez notre W3.CSS Tutorial .