My HTML document does not recognize internal styles [closed]

0

Good afternoon:

I am taking my first steps in HTML and CSS. I have the following code but the browser does not recognize the information contained between the STYLE tags. Can someone help me?

Thank you for your attention!

    

    <head>

        <meta ... Los metatags van aquí ... >

        <base href="http://www.videotutoriales.com/html">

        <meta http-equiv="pragma" content="no-cache">

        <meta http-equiv="refresh" content="120;URL=http://www.trueachievements.com">

        <meta http-equiv="expires" content="0">

        <meta name="description" content="Videotutoriales online y por descarga directa">

        <meta name="keywords" content="Videos, tutoriales, videotutoriales">

        <title> Séptimo Continente &copy; </title>

        <LINK rel="hoja de estilo" href="nombre hoja de estilo externa"
        type="text/css">

        <style>

            body {
            background-color: blue;
            }

        </style>

        <script>

            ... Los scripts del lado clientelar van aquí ...

        </script>

        <body>


            <img src="https://www.videotutoriales.com/html/images/logo.png">

            <p> La página ha sido cambiada de ubicación. Serás redireccionado al nuevo
            'website' en tres segundos o también puedes pulsar el enlace inferior. </p>
            <a href="http://www.trueachievements.com"> TrueAchievements.COM </a>

        </body>

</html>
    
asked by Kaiser Saussure 03.04.2017 в 16:45
source

1 answer

2

You have not closed the <head> tag for what I see. You have to enter the <style> before the label of <title> within the <head> . And look at closing the labels

    
answered by 03.04.2017 в 16:48