Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Semrush - keyword research tool

Linux Foundation Training and Certification

Teach Your Child To Read

Disclosure: My content contains affiliate links.

32,304 questions

42,479 answers

573 users

How to use Font Awesome 5.5.0 search icon in Bootstrap 4 button on Localhost

1 Answer

0 votes
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link href="http://localhost:8080/packages/bootstrap-4.1.3/css/bootstrap.min.css" rel="stylesheet" type="text/css">
        <link href="http://localhost:8080/packages/fontawesome-free-5.5.0-web/css/all.min.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <br />
        <div class="container">
            <div class="row">
                <div class="col-sm-6">
                    <span class="input-group-append">
                        <button class="btn btn-outline-secondary border" type="button">
                            <i class="fas fa-search"></i>
                        </button>
                    </span>
                </div>
            </div>
        </div>
    </body>
</html>

 



Learn & Practice Python
with the most comprehensive set of 13 hands-on online Python courses
Start now


answered Nov 13, 2018 by avibootz
edited Nov 13, 2018 by avibootz
...