<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
<?php 

function custon_css_and_js_file(){

	// Style

	wp_register_style('font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css', array(), '1.0', 'all' );
	wp_register_style('animate', THEME_URI.'/css/animate.css', array(), '1.0', 'all' );
	wp_register_style('icomoon', THEME_URI.'/css/icomoon.css', array(), '1.0', 'all' );
	wp_register_style('themify-icons', THEME_URI.'/css/themify-icons.css', array(), '1.0', 'all' );
	wp_register_style('bootstrap', THEME_URI.'/css/bootstrap.css', array(), '1.0', 'all' );
	wp_register_style('magnific-popup', THEME_URI.'/css/magnific-popup.css', array(), '1.0', 'all' );
	wp_register_style('datetimepicker', THEME_URI.'/css/bootstrap-datetimepicker.min.css', array(), '1.0', 'all' );
	wp_register_style('owl', THEME_URI.'/css/owl.carousel.min.css', array(), '1.0', 'all' );
	wp_register_style('theme.default', THEME_URI.'/css/owl.theme.default.min.css', array(), '1.0', 'all' );
	wp_register_style('style', THEME_URI.'/css/style.css', array(), '1.0', 'all' );
	wp_register_style('slick', THEME_URI.'/slick/slick.css', array(), '1.0', 'all' );
	wp_register_style('slick-theme', THEME_URI.'/slick/slick-theme.css', array(), '1.0', 'all' );

	wp_enqueue_style('font-awesome');
	wp_enqueue_style('animate');
	wp_enqueue_style('icomoon');
	wp_enqueue_style('themify-icons');
	wp_enqueue_style('bootstrap');
	wp_enqueue_style('magnific-popup');
	wp_enqueue_style('datetimepicker');
	wp_enqueue_style('owl');
	wp_enqueue_style('theme.default');
	wp_enqueue_style('style');
	wp_enqueue_style('slick');
	wp_enqueue_style('slick-theme');

	// scripts

	wp_register_script('modernizr-2', THEME_URI.'/js/modernizr-2.6.2.min.js', array('jquery'), '1.0', true );
	wp_register_script('jquery-main', THEME_URI.'/js/jquery.min.js', array('jquery'), '1.0', true );
	wp_register_script('main', THEME_URI.'/js/main.js', array('jquery'), '1.0', true );
	wp_register_script('jquery.easing', THEME_URI.'/js/jquery.easing.1.3.js', array('jquery'), '1.0', true );
	wp_register_script('bootstrap', THEME_URI.'/js/bootstrap.min.js', array('jquery'), '1.0', true );
	wp_register_script('waypoints', THEME_URI.'/js/jquery.waypoints.min.js', array('jquery'), '1.0', true );
	wp_register_script('stellar', THEME_URI.'/js/jquery.stellar.min.js', array('jquery'), '1.0', true );
	wp_register_script('magnific-popup', THEME_URI.'/js/jquery.magnific-popup.min.js', array('jquery'), '1.0', true );
	wp_register_script('magnific-popup-options', THEME_URI.'/js/magnific-popup-options.js', array('jquery'), '1.0', true );
	wp_register_script('slick', THEME_URI.'/slick/slick.min.js', array('jquery'), '1.0', true );


	wp_enqueue_script('modernizr-2');
	wp_enqueue_script('jquery-main');
	wp_enqueue_script('main');
	wp_enqueue_script('jquery.easing');
	wp_enqueue_script('bootstrap');
	wp_enqueue_script('waypoints');
	wp_enqueue_script('stellar');
	wp_enqueue_script('magnific-popup');
	wp_enqueue_script('magnific-popup-options');
	wp_enqueue_script('slick');

}








