Search found 117 matches
- Sat May 23, 2020 3:09 am
- Forum: Angular, Typescript
- Topic: How to automate angular deployment for AWS S3 Angular Website?
- Replies: 0
- Views: 32868
How to automate angular deployment for AWS S3 Angular Website?
Image Upload by DevelopersDiscussion.com If you have hosted your angular app to AWS S3 then you can automate your ng build -prod and drag and drop to S3 bucket by simply following below steps - Step 1 - Add @jefiozie/ngx-aws-deploy to your project and for this run below command (your angular CLI sh...
- Thu May 21, 2020 11:46 pm
- Forum: Angular, Typescript
- Topic: How to add reCAPTCHA feature in your angular app just in 5 minutes?
- Replies: 0
- Views: 22275
How to add reCAPTCHA feature in your angular app just in 5 minutes?
https://developersdiscussion.com/ext/dmzx/imageupload/files/067e4b616aaf7fbd30eaf493a859070d.png Live Demo - https://rajeshkumaryadav.com/#/auth Step 1 - Install dependancy npm i ng-recaptcha --save Step -2 Open app.module.ts and add below import- import { RecaptchaModule } from 'ng-recaptcha'; Als...
- Thu May 21, 2020 10:11 pm
- Forum: Angular, Typescript
- Topic: How to add A fully customizable, one-time password input component in your angular app just in 10 minutes?
- Replies: 0
- Views: 22716
How to add A fully customizable, one-time password input component in your angular app just in 10 minutes?
https://developersdiscussion.com/ext/dmzx/imageupload/files/c87d5ad5f30933c14c860802df4fbaab.png Live Demo - https://rajeshkumaryadav.com/#/auth https://media.giphy.com/media/TdpKuX7H1KBvvR2Hpu/giphy.gif You can use this component in your app and extend it to SMS API, here I will skip API part as i...
- Thu May 21, 2020 2:22 am
- Forum: Angular, Typescript
- Topic: How to add lightbox in your angular project just in 10 minutes?
- Replies: 0
- Views: 22044
How to add lightbox in your angular project just in 10 minutes?
https://developersdiscussion.com/ext/dmzx/imageupload/files/7265e09f3e972271f018ffef603f43a3.png Demo - https://developersdiscussion.com/ext/dmzx/imageupload/files/951e8cfa730d10bcfe39262dc58328cb.png Step 1 - Install lightobox Open your terminal and run below command - npm install --save ngx-light...
- Thu May 21, 2020 1:25 am
- Forum: Angular, Typescript
- Topic: How to add Toastr in your angular project just in 15 minutes?
- Replies: 0
- Views: 22145
How to add Toastr in your angular project just in 15 minutes?
https://developersdiscussion.com/ext/dmzx/imageupload/files/b511f8d838d553e062fcef960fbb0d1a.png Demo - https://developersdiscussion.com/ext/dmzx/imageupload/files/a0adb70c7105c9f8c2582077f9b0ac4b.png Step 1 - Install dependancies for toastr and animation in your project Open your terminal in proje...
- Thu May 21, 2020 1:01 am
- Forum: Angular, Typescript
- Topic: How to add cookie consent in your angular project just in 5 minutes?
- Replies: 0
- Views: 23455
How to add cookie consent in your angular project just in 5 minutes?
https://developersdiscussion.com/ext/dmzx/imageupload/files/556d05969b1c07a7aa9681314e4c1c4a.png Open your terminal and run below command - npm install --save cookieconsent Now install ngx-cookieconsent via: npm install --save ngx-cookieconsent Once installed you need to import the main module app....
- Wed May 20, 2020 7:31 pm
- Forum: HTML CSS
- Topic: What are selectors in CSS and types of selectors?
- Replies: 0
- Views: 33234
What are selectors in CSS and types of selectors?
https://developersdiscussion.com/ext/dmzx/imageupload/files/f94ee92992001073a1ed3831de16a30f.png What are Selectors? CSS selectors identify specific HTML elements as targets for CSS styles. This topic covers how CSS selectors target HTML elements. Selectors use a wide range of over 50 selection met...
- Tue May 19, 2020 5:33 am
- Forum: C,C++,C#
- Topic: Hello World - Your first program in C language
- Replies: 0
- Views: 31032
Hello World - Your first program in C language
To create a simple C program which prints "Hello, World" on the screen, use a text editor to create a new file (e.g. hello.c — the file extension must be .c) containing the following source code: hello.c #include <stdio.h> int main(void) { puts("Hello, World"); return 0; } Let's look at this simple ...
- Tue May 19, 2020 2:20 am
- Forum: HTML CSS
- Topic: What is Inline Style in CSS?
- Replies: 0
- Views: 22354
What is Inline Style in CSS?
Inline Styles - Use inline styles to apply styling to a specific element. Note that this is not optimal. Placing style rules in a <style> tag or external CSS file is encouraged in order to maintain a distinction between content and presentation. Inline styles override any CSS in a <style> tag or ex...
- Tue May 19, 2020 2:13 am
- Forum: HTML CSS
- Topic: CSS @import rule (one of CSS at-rule)
- Replies: 0
- Views: 22241
CSS @import rule (one of CSS at-rule)
The @import CSS at-rule is used to import style rules from other style sheets. These rules must precede all other types of rules, except @charset rules; as it is not a nested statement, @import cannot be used inside conditional group at-rules. @import. How to use @import You can use @import rule in ...