Deploy EVM Contract
Deploy a smart contract to the blockchain using Remix IDE
Copy smart contract code
Paste code in Remix IDE
Create a new file in the contracts folder of your Remix browser IDE and paste the component smart contract code in the newly created file.
Compile smart contract code
Proceed to the solidity compiler tab and compile the newly pasted smart contract code.
Deploy smart contract
Next proceed to the Deploy & run transactions tab select the evm blockchain network you wish to deploy your smart contract to by selecting injected provider and having your browser wallet connected to your preferred network. Finally fill in the constructor arguments and click on transact to deploy your smart contract. Your browser wallet extension will prompt you to sign the transaction in order to confirm the execution for your smart contract deployment.
Be sure to read the constructor argument comments detailed above the constructor function in the smart contract code in order to input the correct values to be used/assigned in the constructor function which is ran on execution of the deployment.