How do I create a basic angular program with default settings
Since you've already downloaded angular, you now need to make a new angular file in the terminal using the command "ng new file" where
you replace file with your file name. Then once everything is done loading you can cd into the directory that has your angular files and then
do the command "ng serve" in the terminal to execute the file.
How to use Angular for your front end to add text
You can add it like a simple html comment. The main difference being that you would need to use in a file with the name "component".
You, however, can specify the type of component you want to add a text to; for instance, if it's the app component then you would need
to use the add a header and paragraph tag to the app.component.html file. However, if you want to change the add text to the homepage component
then you'll need to add the html code to dash.component.html. Also, when you create an angular program you'll get a css and html file each component like app, home, dash and more.
How do you add a homescreen component in angular?
When you make a file normally you will just get the default screen but to make it unique you can load different style components
by doing certain commands like "ng add @angular/material" where you say yes to everything except the the template type where you
choose custom then to add the home screen do "ng generate @angular/material:dashboard home"
How do you add the navigation component in angular
to get the navigation bar do the
command "ng generate @angular/material:navigation dash"
How do you add pictures in angular?
You can add pictures using the html file of the component you want to add a picture to. The code to add the picture is "img src=filename alt="image"". However, you can also implement lazy loading if you want to reduce the amount of memory that will be immediately dowloaded in the user's page.
React content
How is content styled in react?
There is primarly a .css file in the source folder called App.css
How do I add a picture in react?
You have to add the picture within the a function like the render() funtion which will have a return followed by {} and within the { and } you can put an image tag. An example of this if your taking an image from the web and using it here would be when your doing the normal image tag like img src=" then "https://miro.medium.com/max/2625/1*EVqCcmCPgpNKxU1wzcTHgw.png""
Node.js Content
How to create a personal server with node.js
Since node.js is a backend language it's primary function will be to add functionality that the user won't be able to see. However,
the main function will be that it will provide a server for the angular function to run on. To do so create a .js file where you create a
server by using the http module