Reading external doc files in html

Hello there,

Does anyone know how can I read an external file in an html. For example in the code below I want to create a document and let the html pull that information. The first line it will get the question and everything on the second line will be the answer. (In other words I am trying to put the text information in a document instead of the html file. Any help?

	<ul id="privacy" class="cd-faq-group">
					<li class="cd-faq-title"><h2>Contact</h2></li>
					<li>
						<a class="cd-faq-trigger" href="#0"> QUESTION!</a>
						<div class="cd-faq-content">
							                             <p> ANSWER</p>
						</div>
					</li>

				</ul>

1 Like

I’ll try. :slight_smile:

There are different ways to includ external files into the html, the first you could try is Server Side Includes. Exactly how is dependent of the site hosting.

Here are a few links I dug up to read more about SSI:

Introduction to the server side: https://developer.mozilla.org/en-US/docs/Learn/Server-side/First_steps/Introduction

Server Side Includes tutorial: https://kb.iu.edu/d/bfsf

SSI Part 1 - Introduction & Including A File: http://www.freewebmasterhelp.com/tutorials/ssi

Then there are more dynamic AJAX type of methods, but that’s not as easy. :slight_smile:

1 Like

Is it possible to provide an example?

Of course. Please post enough (but not too much) of what you have tried, and what problem(s) / error(s) there is with it.

2 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.