-
Notifications
You must be signed in to change notification settings - Fork 62
Julia.L-TailTales #49
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
julialindstrand
wants to merge
17
commits into
Technigo:main
Choose a base branch
from
julialindstrand: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 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
91ca659
Project-prototype
julialindstrand 0830231
Added !
julialindstrand 3880b92
Removed !
julialindstrand e6476bd
Added README
julialindstrand b6b6255
Took away the nav-bar on mobile
julialindstrand 94fb812
Made a picture map
julialindstrand 719278c
Added my form as a new html
julialindstrand d1ee9f9
Center the form button
julialindstrand dbd66e6
Move back button
julialindstrand 5a83a73
Added icon
julialindstrand 8e4c300
Added text to checkbox
julialindstrand 4b1fb13
Adds buttons to articles
julialindstrand 36abe8d
Makes the hamburgermany look like nav
julialindstrand 4140055
Adds Articles and Application in nav
julialindstrand c91e588
Clean the code
julialindstrand fb7bc36
More code cleaning
julialindstrand 3958a93
Changes http > https and fixes css for 320px
julialindstrand 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
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,147 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta | ||
| name="viewport" | ||
| content="width=device-width, initial-scale=1.0" | ||
| > | ||
| <link | ||
| rel="stylesheet" | ||
| href="/style.css" | ||
| > | ||
| </head> | ||
|
|
||
|
|
||
| <body> | ||
|
|
||
| <div class="hero-image"> | ||
| <div class="hero-text"> | ||
| <h1>TailTales</h1> | ||
| </div> | ||
| </div> | ||
|
|
||
|
|
||
| <nav class="navbar"> | ||
| <div class="nav-container" onclick="myFunction(this)"> | ||
| <div class="bar1"></div> | ||
| <div class="bar2"></div> | ||
| <div class="bar3"></div> | ||
| </div> | ||
| <ul> | ||
| <li class="nav-text"><a href="/">Home</a></li> | ||
| <li class="nav-text"><a href="/#cat-cards">Cats</a></li> | ||
| <li class="nav-text"><a href="/#article-cards">Articles</a></li> | ||
| <li class="nav-text"><a href="/Form/index.html">Application</a></li> | ||
| <li class="nav-text"><a href="#footer">Contact</a></li> | ||
| </ul> | ||
| </nav> | ||
|
|
||
|
|
||
| <form | ||
| action="http://httpbin.org/anything" | ||
| method="post" | ||
| > | ||
| <link | ||
| rel="stylesheet" | ||
| href="style.css" | ||
| > | ||
|
|
||
| <h2>Adoption application</h2> | ||
|
|
||
| <p>We want you to write your information and select the cat you are interested in adopting. We will then send you the | ||
| questions we want answered and then if everything aligns we can book a meeting.</p> | ||
|
|
||
| <fieldset class="form-input" id="forminput"> | ||
|
|
||
| <label> | ||
| <span>Name</span> | ||
| <input | ||
| type="name" | ||
| name="name" | ||
| id="name" | ||
| autofocus="name" | ||
| required="text" | ||
| > | ||
| </label> | ||
|
|
||
|
|
||
| <label> | ||
| <span>Number</span> | ||
| <input | ||
| type="number" | ||
| name="number" | ||
| id="number" | ||
| required="text" | ||
| > | ||
| </label> | ||
|
|
||
| <label> | ||
| <span>E-mail</span> | ||
| <input | ||
| type="email" | ||
| name="email" | ||
| id="email" | ||
| placeholder="[email protected]" | ||
| required | ||
| > | ||
| </label> | ||
|
|
||
| <label> | ||
| <span>Cat</span> | ||
| <select | ||
| name="cat" | ||
| id="cat" | ||
| required | ||
| > | ||
| <option | ||
| value="" | ||
| disabled | ||
| selected | ||
| hidden | ||
| ></option> | ||
| <option value="Marmalade">Marmalade</option> | ||
| <option value="Snowball">Snowball</option> | ||
| <option value="Ashlyn">Ashlyn</option> | ||
| <option value="Tess">Tess</option> | ||
| </select> | ||
| </label> | ||
|
|
||
|
|
||
| <label class="checkbox">I confirm that I am 18 years or older | ||
| <input | ||
| id="checkbox" | ||
| type="checkbox" | ||
| required="" | ||
| > | ||
| </label> | ||
|
|
||
| </fieldset> | ||
|
|
||
| <button class="submit">Apply</button> | ||
|
|
||
| <div class="button-back"> | ||
| <a href="/"> | ||
| <button class="submit" type="button">Back</button> | ||
| </a> | ||
| </div> | ||
|
|
||
|
|
||
| </form> | ||
|
|
||
|
|
||
| <div id="footer" class="footer-container"> | ||
| <div class="footer-main"> | ||
| <p>All rights reserved</p> | ||
| <p>+46 123 45 67</p> | ||
| <p>Tailroad 5, Sweden</p> | ||
| </div> | ||
| </div> | ||
|
|
||
|
|
||
| </body> | ||
|
|
||
| <script type="text/javascript" src="/script.js"></script> | ||
|
|
||
| </html> | ||
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,78 @@ | ||
| body { | ||
| font-family: sans-serif; | ||
| background: rgb(248, 248, 234); | ||
| } | ||
|
|
||
|
|
||
| form { | ||
| border-radius: 30px; | ||
| padding: 40px; | ||
| max-width: 400px; | ||
| margin: 50px auto; | ||
| background: rgb(62, 102, 62); | ||
| color: beige; | ||
| box-shadow: 0 1px 3px 0 black, 0 4px 6px 0 black; | ||
| } | ||
|
|
||
| fieldset { | ||
| display: flex; | ||
| flex-direction: column; | ||
| border: none; | ||
| padding: 5px; | ||
| background: rgb(255, 255, 255); | ||
| color: black; | ||
| font-size: 15px; | ||
| border-radius: 5px; | ||
| box-shadow: 0 1px 3px 0 black, 0 4px 6px 0 black; | ||
| } | ||
|
|
||
| :focus { | ||
| outline: none; | ||
| border: 2px solid rgb(166, 190, 166); | ||
| border-radius: 3px; | ||
| } | ||
|
|
||
| h2 { | ||
| text-transform: uppercase; | ||
| text-align: center; | ||
| margin-top: 10px; | ||
| } | ||
|
|
||
| label { | ||
| display: flex; | ||
| flex-direction: column; | ||
| padding: 2px; | ||
| margin-top: 5px; | ||
| } | ||
|
|
||
| .checkbox input { | ||
| width: 18px; | ||
| height: 18px; | ||
| margin-left: 1px; | ||
| align-self: flex-start; | ||
| } | ||
|
|
||
| .checkbox input:checked { | ||
| accent-color: rgb(62, 102, 62); | ||
| } | ||
|
|
||
| .submit { | ||
| background: rgb(166, 190, 166); | ||
| border: none; | ||
| appearance: none; | ||
| border-radius: 4px; | ||
| width: 100%; | ||
| font-size: 20px; | ||
| color: black; | ||
| font-weight: bold; | ||
| padding: 10px; | ||
| margin-top: 20px; | ||
| box-shadow: 0 1px 3px 0 black, 0 4px 6px 0 black; | ||
| transition: transform 0.3s ease, box-shadow 0.3s ease; | ||
| } | ||
|
|
||
| .submit:hover { | ||
| transform: translateY(-2px); | ||
| box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); | ||
| box-shadow: 10px 10px 5px black; | ||
| } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | ||
|
|
||
| Project: [Tail Tales](https://technigo-tailtales.app/) |
Binary file not shown.
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.
Make sure you're using the https method, otherwise most browsers will block this action