Sin embargo, aquí hay tres ejemplos listos para usar sobre cómo usar CSS junto con html. Simplemente puede ponerlos en un archivo, guardarlo y abrirlo con el navegador de su elección:
Este incrusta directamente tu estilo CSS en tus etiquetas / elementos. En general, este no es un enfoque muy agradable, porque siempre debe separar el contenido / html del diseño.
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Hi, I'm bold!</title>
</head>
<body>
<p style="font-weight:bold;">Hi, I'm very bold!</p>
</body>
</html>
El siguiente es un enfoque más general y funciona en todas las etiquetas "p" (significa párrafo) en su documento y, además, las hace ENORMES. Por cierto. Google utiliza este enfoque en su búsqueda:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Hi, I'm bold!</title>
<style type="text/css">
p {
font-weight:bold;
font-size:26px;
}
</style>
</head>
<body>
<p>Hi, I'm very bold and HUGE!</p>
</body>
</html>
Probablemente tardarás un par de días jugando con los primeros ejemplos, sin embargo, aquí está el último. En esto, finalmente separan completamente el diseño (css) y el contenido (html) entre sí en dos archivos diferentes. stackoverflow toma este enfoque.
En un archivo pones todo el CSS (llámalo 'hello_world.css'):
p {
font-weight:bold;
font-size:26px;
}
En otro archivo debes poner el html (llámalo 'hello_world.html'):
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Hi, I'm bold!</title>
<link rel="stylesheet" type="text/css" href="hello_world.css" />
</head>
<body>
<p>Hi, I'm very bold and HUGE!</p>
</body>
</html>
Espero que esto ayude un poco. A elementos específicos de direcciones en su documento y no todas las etiquetas que usted debe familiarizarse con las class
, id
y name
atributos. ¡Que te diviertas!