<?php
/*
Plugin Name:  Sebastian Hello World
Description:  A short little description of the plugin. It will be displayed on the Plugins page in WordPress admin area. 
Version:      1.0
Author:       Sebastian K Foder
*/

function my_h1_shortcode() {
    return 
'<h1>Hello World!</h1>';
}
add_shortcode('my_h1''my_h1_shortcode');
    
?>