How to Add youtube videos into webpage [closed] - html

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I want to add a video into my website.
<p><iframe src="https://www.youtube.com/channel/UChgO7gy5HjRQXuj9hMJQXkw/playlists"></iframe></p>
After Using the above code the video is not coming up. Please what is wrong with the code?

If you check your browser's developer tools, you'll see the following error:
Refused to display 'https://www.youtube.com/channel/UChgO7gy5HjRQXuj9hMJQXkw/playlists' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
You can't embed YouTube in an iframe like that. You have to use one of their embeddable widgets.
See also: https://support.google.com/youtube/answer/171780?hl=en

Related

video and audio in html not working in browsers [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 days ago.
Improve this question
the video and audio not working in webpage when I used html code and i used the tag correctly
please help ?
I tried to open HTML page on different type of browsers and I'm using the path in correct way

Why wont my website show up? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I have create my website and have a domain but when I type the domain name into the browser I get some weird page. I am using 000webhosting and just uploaded the files and they said they were good. I am not sure what is the problem but here is the link
hudsonreamer.com
Hopefully I can get some help
Thanks a lot for the help
Check your DNS/Nameserver records to link files to domain.
Not really covered here however you may want to watch a youtube tutorial on setting up a hosted website.

Hyperlinks on my website are not working [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Just tried to make a little website from scratch (i'm a beginner) but weirdly my hyperlinks aren't working at the bottom of the page .. What am I doing wrong?
Thank you.
Here is my code (couldn't paste it in here correctly sorry) : http://www.mediafire.com/view/bl7104l8q8plbvm/shutterbug.txt
Your link tags are:
Facebook
A link with href="#" redirects to the current URL. Try changing it to:
Facebook

Responsive css is not used when frame is used [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I have a website which is working as expected when resizing my window (responsive css is used) : http://carthera.eu/
But when I'm going on the same website with this url http://carthera.com/ responsive css is not taken into account.
I have seen that this url is using a frame to display http://carthera.eu.
Do you have any idea why I have this issue ?
The solution was to do a 301 redirect to the principal domain name. I had no other solution having no control over the frame.

frames not showing [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
i'm trying to use frames, but they aren't showing up. I tried using the exact sample (with srcs to my pages) from w3schools, but still when the page loads the frames don't. There's no error provided or anything. They just don't show up at all. I don't get it. I'm using Chrome if that helps.
http://www.w3schools.com/html/tryit.asp?filename=tryhtml_frame_cols
Edit: I found that adding anything other than frames makes all frames disappear. Can a page not have anything but frames using a frameset?
No you can't have a body element and a frameset element on the same page. See W3C. Oh by the way, DO NOT use frames, they are evil.