-
Notifications
You must be signed in to change notification settings - Fork 62
My business website #51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Appilistus
wants to merge
37
commits into
Technigo:main
Choose a base branch
from
Appilistus:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
c4cea29
index.html
5064a94
add CSS
a8953c3
add hero section
d1c0132
changed html
26e115d
edit CSS
4e89692
edit CSS
994ce58
edit CSS
f9b7023
edit CSS
1e85033
fix HTML & CSS
77f378c
media query
57d68ac
edit hover animation
5af1621
edit CSS
84e7483
small changes in CSS
0c314fa
box shadow & fabicon
3617707
edit readme
e75bac5
add form
15cbc32
edit form
4369fad
add placeholder
894408f
changed button color
e6a339f
edit hero video
af3455a
make hero video responsive
d2d2db9
fix safety saction design
35a1538
change safety image
d6f2e01
add :focus on form CSS
8291326
update README
df8ebe1
add focus function
c597887
change border-color in form
044fd30
change hero video to image for mobile
9d3261a
add hamburger button
fce9aef
add hamburger btn, still need some styling
add54d7
style hamburger menu
bcc3a5b
add back to top
acfb332
add back to top button
4281c09
fix typo
ea71b0e
fix the https method
863d49f
fix indentation
9561297
fix indentation
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| # js-project-business-site | ||
| # js-project-business-site | ||
|
|
||
| https://ai-compass-business-site.netlify.app/ |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,138 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <link rel="preconnect" href="https://fonts.googleapis.com"> | ||
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap" rel="stylesheet"> | ||
| <link rel="stylesheet" href="./style.css" /> | ||
| <link rel="icon" type="image/png" href="/js-project-business-site/images/user-robot.png"> | ||
| <title>Form | AI Compass</title> | ||
| </head> | ||
| <body> | ||
| <div class="signup-form"> | ||
| <form | ||
| action="https://httpbin.org/anything" | ||
| method="POST"> | ||
| <h2>Sign Up</h2> | ||
| <fieldset> | ||
| <div class="name"> | ||
| <h4>Name</h4> | ||
| <label> | ||
| <input | ||
| class="your-name" | ||
| type="text" | ||
| name="name" | ||
| placeholder="your name" | ||
| required /> | ||
| </label> | ||
| </div> | ||
|
|
||
| <div class="email"> | ||
| <h4>Email</h4> | ||
| <label> | ||
| <input | ||
| class="input-email" | ||
| type="email" | ||
| name="email" | ||
| placeholder="example@gmail.com" | ||
| required /> | ||
| </label> | ||
| </div> | ||
|
|
||
| <div class="age-box"> | ||
| <h4>Age Group</h4> | ||
| <div class="age-checkbox"> | ||
| <label class="checkbox-label"> | ||
| <input | ||
| type="checkbox" | ||
| name="ageGroup" | ||
| value="lowerElementary"> | ||
| <span class="custom-checkbox"></span> | ||
| <span>Lower Elementary</span> | ||
| </label> | ||
| <label class="checkbox-label"> | ||
| <input | ||
| type="checkbox" | ||
| name="ageGroup" | ||
| value="upperElementary"> | ||
| <span class="custom-checkbox"></span> | ||
| <span>Upper Elementary</span> | ||
| </label> | ||
| <label class="checkbox-label"> | ||
| <input | ||
| type="checkbox" | ||
| name="ageGroup" | ||
| value="middleSchool"> | ||
| <span class="custom-checkbox"></span> | ||
| <span>Middle School</span> | ||
| </label> | ||
| <label class="checkbox-label"> | ||
| <input | ||
| type="checkbox" | ||
| name="ageGroup" | ||
| value="highSchool"> | ||
| <span class="custom-checkbox"></span> | ||
| <span>High School</span> | ||
| </label> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="who-are-you"> | ||
| <h4>Who are you?</h4> | ||
| <div class="who-radio"> | ||
| <label class="radio-label"> | ||
| <input | ||
| type="radio" | ||
| name="whoAreYou" | ||
| value="parent" | ||
| id="parent" | ||
| checked required> | ||
| <span class="custom-radio"></span> | ||
| <span>Parent</span> | ||
| </label> | ||
| <label class="radio-label"> | ||
| <input | ||
| type="radio" | ||
| name="whoAreYou" | ||
| value="teacher" | ||
| id="teacher" | ||
| required> | ||
| <span class="custom-radio"></span> | ||
| <span>Teacher</span> | ||
| </label> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="line"></div> | ||
|
|
||
| <div class="interested-in"> | ||
| <p>Interested in (*optional)</p> | ||
| <label> | ||
| <select | ||
| name="interestedIn" | ||
| id="interestedIn"> | ||
| <option | ||
| class="select-answer" | ||
| value="selectAnswer" disabled selected>--Select Answer--</option> | ||
| <option value="creativeProjects">Creative Projects</option> | ||
| <option value="aiBasics">AI Basics</option> | ||
| <option value="careerPreparation">Career Preparation</option> | ||
| </select> | ||
| </label> | ||
| </div> | ||
|
|
||
| <button type="submit">Get Started</button> | ||
| </fieldset> | ||
| </form> | ||
| <div class="robot-image"> | ||
| <img | ||
| src="./robot.png" | ||
| alt="AI Compass Image" | ||
| width="200" | ||
| height="200"/> | ||
| </div> | ||
| </div> | ||
| </body> | ||
| </html> | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this is what you wanted it to be like but i was able to check multiple checkboxes at once so just alerting you on that thats possible:)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I wanted to be able to check multiple boxes for the users with multiple children:)