This blog is hosted by Google. I am actually satisfied with this system because of no ads, no fee, and what's more, its user-friendliness. I have knowledge about how to write codes, but the ability of programming is not required in this system. Everyone is able to make a blog using this content without difficulty.
One disadvantage of this sophisticated system is the absence of a function to upload sound files. You can upload audio contents via YouTube because YouTube handles audio files as a movie, but I do not think that this is a smart solution. Let me inform you, however, that I have succeeded in posting a sound file as it is.
Here is one example of a heart sound, so-called gallop, in a patient with decompensated heart failure.
The way that I used is very simple. All I did was just to write codes, to upload them to another site, and to make a link to it. The program is shown as below.
<script src="https://***/audio.min.js" type="text/javascript"></script>
<link href="https://***/audio.css" media="all" rel="stylesheet" type="text/css"></link>
<script>
audiojs.events.ready(function() {
audiojs.createAll();
});
</script>
<audio id="sampleAudio" src="http://***.mp3"></audio>
I would be happy if this codes were practical and informative.