/*This file is part of createyournight, twentyseventeen child theme. All functions of this file will be loaded before of parent theme functions. Learn more at https://codex.wordpress.org/Child_Themes. Note: this function loads the parent stylesheet before, then child theme stylesheet (leave it in place unless you know what you are doing.) */ if ( ! function_exists( 'suffice_child_enqueue_child_styles' ) ) { function createyournight_enqueue_child_styles() { // loading parent style wp_register_style( 'parente2-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'parente2-style' ); // loading child style wp_register_style( 'childe2-style', get_stylesheet_directory_uri() . '/style.css' ); wp_enqueue_style( 'childe2-style'); } } add_action( 'wp_enqueue_scripts', 'createyournight_enqueue_child_styles' ); /*Write here your own functions */ /* Createyournight Theme */ Sample Page - createyournight.com

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!