A Pen by Yixuan Feng on CodePen.
Created
April 24, 2022 15:34
-
-
Save yi-xuan-97/a30b076c166841fd9b77359f55db1b9a to your computer and use it in GitHub Desktop.
Web Speech
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main class="w-50 mx-auto"> | |
<form class="bg-light border rounded mx-auto mt-5 p-3"> | |
<h1 class="h2 text-center mt-2 mb-4">Homework 3</h1> | |
<div class="form-group"> | |
<label for="field1">Field 1</label> | |
<input type="text" class="form-control" id="field1" name="field1" /> | |
</div> | |
<div class="form-group"> | |
<label for="field2">Field 2</label> | |
<input type="text" class="form-control" id="field2" name="field2" /> | |
</div> | |
<div class="form-group"> | |
<label for="field3">Field 3</label> | |
<textarea class="form-control" id="field3" name="field3" rows="3"></textarea> | |
</div> | |
<div class="form-group mt-4"> | |
<input type="submit" class="btn btn-primary btn-block" value="Submit / Speak" /> | |
</div> | |
</form> | |
</main> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-color: #474747; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
start file