Oneseco Media GITHUB

Oneseco Media GITHUB

4110 bookmarks
Newest
Pages
Pages
GitHub Pages GitHub Pages is designed to host your personal, organization, or project pages from a GitHub repository. Build and deployment Source GitHub Actions Use a suggested workflow, browse all workflows, or create your own. Next.js By GitHub Actions Package a Next.js site. Configure NuxtJS By GitHub Actions Package a NuxtJS site. Configure Hugo By GitHub Actions Package a Hugo site. Configure Gatsby By GitHub Actions Package a Gatsby site. Configure Jekyll By GitHub Actions Package a Jekyll site. Configure Static HTML By GitHub Actions Deploy static files in a repository without a build. Configure Workflow details will appear here once your site has been deployed. View workflow runs. Custom domain Custom domain Custom domains allow you to serve your site from a domain other than cybersoulja.github.io. Learn more about configuring custom domains. Save Enforce HTTPS — Required for your site because you are using the default domain (cybersoulja.github.io) HTTPS provides a layer of encryption that prevents others from snooping on or tampering with traffic to your site. When HTTPS is enforced, your site will only be served over HTTPS. Learn more about securing your GitHub Pages site with HTTPS. Visibility GitHub Enterprise With a GitHub Enterprise account, you can restrict access to your GitHub Pages site by publishing it privately. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise. You can try GitHub Enterprise risk-free for 30 days. Learn more about the visibility of your GitHub Pages site. Start free for 30 days
·github.com·
Pages
Anatomy of a Component • Angular
Anatomy of a Component • Angular
Components in Angular edit Components are the foundational building blocks for any Angular application. Each component has three parts: TypeScript class HTML template CSS styles In this activity, you'll learn how to update the template and styles of a component. This is a great opportunity for you to get started with Angular. Update the component template Update the template property to read Hello Universe template: ` Hello Universe `, check When you changed the HTML template, the preview updated with your message. Let's go one step further: change the color of the text. Update the component styles Update the styles value and change the color property from blue to #a144eb. styles: ` :host { color: #a144eb; } `, check When you check the preview, you'll find that the text color will be changed. In Angular, you can use all the browser supported CSS and HTML that's available. If you'd like, you can store your template and styles in separate files.
https://discord.com/oauth2/authorize?client_id=1335725905284300831&permissions=8&integration_type=1&scope=bot
·angular.dev·
Anatomy of a Component • Angular