Primero Creamos un Archivo .html 5.0 y en el titulo le podemos (responsivo).
<!DOCTYPE html><htmllang="en"><head><metacharset="UTF-8"><metaname="viewport"content="width=device-width, initial-scale=1.0"><title>Responsivo</title></head><body></body></html>
Luego agregamos un contendor con DIV;
<body><divclass = "Contendor"><h1>Pagina Responsiva</h1><p>Emplear una Paginas para cualquier Dispositivo</p></div></body>
Se crea una etiqueta <Style> para estilizar nuestra pagina en <head> y agregamos @media (max-width: 800px
<style>div{
background: #F9E79F;
text-align: center;
}
@media (max-width: 800px) {
}
</style>
Esta son los prodecimiento aprendido durante el curso.