Can't get fontawesome to display correct

I am trying to include font awesome in my site but for some reason, it is not showing at the start of the line…

<?php

include_once 'header.php';

?>

<!DOCTYPE html>
<html>
<head>
	<title></title>
	<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

<i class="fas fa-star fa-10x"></i><i class="fas fa-star fa-10x"></i><i class="fas fa-star fa-10x"></i><i class="fas fa-star fa-10x"></i>
</body>
</html>


<?php

echo '<h3>Welcome to your Practice Diary section!</h3>';
echo '<br></br>';
echo '<h1>Enter your practice details below. Make sure that it is detailed as it will count towards any upcoming promotion or competion!</h1>';
echo '<br></br>';

$date = date("Y-m-d H:i:s");

?>

<!DOCTYPE html>
<html>
<head>
	<title></title>
	
</head>
<body>





<form class="signup-form" action="practice_diary_form.php" method="POST">

	<label>User ID</label>
	<br></br>
	<input text="text" name="user_uid" placeholder="User ID">
	<br></br>
	<label>First Name</label>
	<br></br>
	<input text="text" name="first_name" placeholder="First Name">
	<br></br>
	<label>Last Name</label>
	<br></br>
	<input text="text" name="last_name" placeholder="Last Name">
	<br></br>
    <label>Lesson Title</label>
	<br></br>
	<input text="text" name="lesson_title" placeholder="Lesson Title">
	<br></br>
	<label>Describe Lesson: For example: Did you practice counting? fingering?</label>
	<br></br>
	<textarea name="describe_lesson" placeholder="Describe Lesson"></textarea>
	<br></br>
	<label>Hours of practice</label>
	<br></br>
	<input text="text" name="hours_practice" placeholder="Hours of Practice">
	<br></br>
	<label>Date of Practice</label>
	<br></br>
	<input text="text"  placeholder="<?php echo $date?>">
	<br></br>
	<button type="submit" name="submit">Enter Diary</button>
</form>
</body>
</html>

Do I need to format my text here because part of my code is not appearing correctly…

Try fa instead of fas

1 Like