- 👋 Hi, I’m @donghuaworld
- 👀 I’m interested in ...
- 🌱 I’m currently learning ...
- 💞️ I’m looking to collaborate on ...
- 📫 How to reach me ...
- 😄 Pronouns: ...
- ⚡ Fun fact: ...
<script>
function playVideo(input) {
const file = input.files[0];
const videoPlayer = document.getElementById('videoPlayer');
if (file) {
const url = URL.createObjectURL(file);
videoPlayer.src = url;
}
}
</script>