Github code isn't copy correctly

My webpage uses the audio tag, but it is located in on github. When copied, it was moved to .

Your description is not clear. Please try rephrasing and also share the site name.

When copied, it was moved to isn’t
https://nash-blog.netlify.app/member/eric

I’m sorry, I still have no idea what you mean.

plzz try to explain your problem in more detail…


it was moved to <body> but it was written at <head> on github.

The repo for this site is private so we cannot debug this directly. That said, the <audio> tag is in the <head> for the deployed site as well:

$ curl -s https://nash-blog.netlify.app/member/eric | head -n 10
<!DOCTYPE html>
<html lang="zh-TW">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Eric</title>
    <link rel="icon" href="/avatar/member.png">
    <link rel="stylesheet" type="text/css" href="\styles\developer_style.css">
    <audio src="/bgm/eric.mp3"autoplay loop></audio>
  </head>