Remove CSS & JS from

Sounds like some filter is placing the create.css file there. Check your functions.php (or search for the following function inside the theme with your text editor in case some other file is enqueueing those assets) for wp_enqueue_style and see if you have that file enqueued.

Other way of doing this is using the filter wp_head, so, you might have something like this in your functions.php or maybe elsewhere in your theme:

add_action( 'wp_head', 'my_callback_function');

my_callback_function() { ?>
       <link rel="stylesheet" id="create-css" href="http://www.myweb.com/wp-content/themes/movil/create.css?ver=4.9.8" type="text/css" media="all" data-inprogress="">
<?php
}

If you want to delete the code above you can, but instead of manually placing the tag, you should use something like the code below, again, in your functions.php:

add_action('wp_enqueue_scripts', 'my_callback_function');

function my_callback_function() {
    wp_enqueue_style('create-style', get_stylesheet_directory_uri() . '/create.css');
}

The script tags you are seeing in your website normally come from the WordPress core, so you won’t have to delete them, placing them again, or do anything, WordPress handles that for you and it will use http or https depending on your configuration.

The possibility exists that someone overwrote the enqueueing of the scripts (if http doesn’t change automatically to https when you configure https in your website, then something is not right) to use something different to what the WordPress core gives you, in which case you should search and see if somewhere in your theme the filter wp_head or the function wp_enqueue_script is being used to put those files there.