screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.production.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" /> </head> <body> <div id="app"></div> <script type="text/babel"> function App() { return ( <div className='container'> <h3>font Awesome icons color change in React Js</h3> <i className="fas fa-coffee fa-xs"></i> <i className="fas fa-star fa-sm"></i> <i className="fas fa-heart fa-lg"></i> <i className="fas fa-smile fa-2x"></i> <i className="fas fa-check-circle fa-3x"></i> <i className="fas fa-exclamation-triangle fa-4x"></i> <i className="fas fa-bell fa-5x"></i> <div classNmae='inline-style'> <i className="fas fa-gift" style={{ fontSize: '15px' }}></i> <i className="fas fa-flag" style={{ fontSize: '15px' }}></i> <i className="fas fa-sun" style={{ fontSize: '20px' }}></i> <i className="fas fa-moon" style={{ fontSize: '25px' }}></i> <i className="fas fa-rocket" style={{ fontSize: '30px' }}></i> <i className="fas fa-star-half-alt" style={{ fontSize: '35px' }}></i> <i className="fas fa-paper-plane" style={{ fontSize: '40px' }}></i> <i className="fas fa-leaf" style={{ fontSize: '45px' }}></i> <i className="fas fa-crown" style={{ fontSize: '50px' }}></i> </div> </div> ); } ReactDOM.render(<App />, document.getElementById("app")); </script> <style> * { box-sizing: border-box; } body { font-family: Arial, sans-serif; margin: 0; padding: 0; } .container { margin: 0 auto; width: 600px; text-align: center; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24); padding: 20px; } h3 { font-size: 24px; margin-bottom: 20px; } .inline-style { display: flex; justify-content: space-between; margin-top: 20px; } </style> </body> </html>