+ 1
How can i inser a pdf file in my html page ?
example :i would insert a pdf file that 's momo.pdf in my web page .
1 Réponse
+ 1
Got it! If the file name is s momo.pdf, then because it contains a space, you need to handle it properly in your HTML.
Option 1: Use URL encoding (replace space with %20)
<embed src="s%20momo.pdf" type="application/pdf" width="100%" height="600px" />
Option 2: Use quotes around the src (and still URL encode spaces is best practice)
<iframe src="s%20momo.pdf" width="100%" height="600px"></iframe>
Option 3: Rename the file (recommended for cleaner URLs)
If possible, rename s momo.pdf to s_momo.pdf or s-momo.pdf — this avoids issues with spaces in URLs.