Jump to content

webmanz

Member
  • Posts

    71
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by webmanz

  1. The lag in the course video's needs to be addressed. Stop-start course video's is quite frustrating way to learn. I am also getting " a network error caused the download to fail part-way" error multiple times. Video is stuck at Chap 5 LESSON 4: Images - part 2 now.

    I'm going elsewhere to continue my learning in meantime;  let me know when there's a solution.

     

  2. Everything worked out just fine for me as per the video's objectives.

    However, I would like to know why,when I am here:     root/sub-pages/my-friends.html

    and I click 'my plans' or 'my work', it doesn't work.

    The directory path for these is within subpages folder, but when I look in subpages they are not there but rather in root dir.

    Q: How do we click my plans and my work from within root/sub-pages/my-friends.html

    and get them to work? Within Sublime my-friend.html  tab I tried coding:   ../my-website/my-plans.html      but to no avail.

     

    <!doctype html>
    <html>
         <head>
              <title>Friends page</title>
         </head>
    <body>
    	<p>Welcome to my personal <a href="../sub-pages/index.html"> home page.</a></p>
    	<hr>
    	<h1> Friends Page</h1>
    	<p>Check out a list of <a href="my-friends.html">my friends.</a></p>
    	<p>Check out a list of <a href="../my-website/my-plans.html">my plans.</a></p>
    	<p>Check out a list of <a href="../my-website/my-work.html">my works.</a></p>
    	</body>
    </html>
  3. I have everything identical except for: 

        <p>Check out a list of <a href="my-friends.html">my friends.</a></p>

    My results show the whole sentence hyperlink instead of just "my friends" as in video.

    Skip to 3.27 of Stef's video:

    https://www.youtube.com/watch?v=RYwoM8JVG38&index=19&list=PL4WWE_tMSca2ud8vp2cdtLsv3yADiJPiR

     

    This is what I typed in Sublime.

    <!doctype html>
    <html>
         <head>
              <title>Home Page</title>
         </head>
    <body>
        <p>Welcome to my personal <a href="index.html"> home page.</p>
        <p>Check out a list of <a href="my-friends.html">my friends.</a></p>
        <p>Check out a list of <a href="my-plans.html">my friends.</a></p>
        <p>Check out a list of <a href="my-work.html">my friends.</a></p>
        <p>Check out a list of <a href="my-friends">my friends.</a></p>
    </body>
    </html>

     

    What did I do wrong?

     

×
×
  • Create New...