mirror of
https://github.com/miggymofongo/asteroid.git
synced 2024-11-24 14:10:27 +00:00
fixed a couple input tags to make sure input id tags matched the type of input
This commit is contained in:
parent
bd9908ed82
commit
afdca88703
1 changed files with 11 additions and 10 deletions
21
index.html
21
index.html
|
@ -75,7 +75,7 @@
|
|||
<div class="intro--banner">
|
||||
<h1>Welcome<br>to my<br>asteroid.</h1>
|
||||
|
||||
<!-- Blocking out the ribbon buttons
|
||||
|
||||
<a href="https://library.miguelalmodo.com/">
|
||||
<button class="cta">Check out a book
|
||||
<svg version="1.1" id="Layer_1" href="https://library.miguelalmodo.com" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 150 118" style="enable-background:new 0 0 150 118;" xml:space="preserve">
|
||||
|
@ -86,7 +86,7 @@
|
|||
<span class="btn-background"></span>
|
||||
</button></a>
|
||||
<br><br>
|
||||
|
||||
<!-- Blocking out the ribbon buttons
|
||||
<a href="https://nostree.me/npub1ajt9gp0prf4xrp4j07j9rghlcyukahncs0fw5ywr977jccued9nqrcc0cs">
|
||||
<button class="cta">Bookmarks
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 150 118" style="enable-background:new 0 0 150 118;" xml:space="preserve">
|
||||
|
@ -136,8 +136,7 @@
|
|||
|
||||
<li class="l-section section">
|
||||
<div class="work">
|
||||
<h2>Build your organization's power with protocols.
|
||||
</h2>
|
||||
<h2>Rebuilding the digital public commons.</h2>
|
||||
<div class="work--lockup">
|
||||
<ul class="slider">
|
||||
<li class="slider--item slider--item-left">
|
||||
|
@ -146,10 +145,11 @@
|
|||
<img src="img/gfc-logo-12@2x_transp.png" style="size: 50%; padding-top: 5em" alt="gitfitcode logo"></a>
|
||||
</div>
|
||||
<p class="slider--item-title">Web Development</p>
|
||||
<p class="slider--item-description">I'm learning to code with professionals like
|
||||
<p class="slider--item-description">I'm building user-centric web experiences with the likes of
|
||||
<a href="https://hacklab.nilfm.cc/felt">NilX </a>and
|
||||
<a href="https://giI am in community withthub.com/gitfitbro">gitfitbro</a>. Find
|
||||
my code on <a href="https://github.com/miggymofongo">Github</a> or <a href="https://forge.lightcrystal.systems/migs"> Light Crystal Systems </a>.</p>
|
||||
<a href="https://giI am in community withthub.com/gitfitbro">GitFitBro.</a>
|
||||
Find my code on <a href="https://github.com/miggymofongo">Github</a> or
|
||||
<a href="https://forge.lightcrystal.systems/migs"> Light Crystal Systems.</a></p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="slider--item slider--item-center">
|
||||
|
@ -162,6 +162,7 @@
|
|||
index and RSS. <a href="https://podcast.miguelalmodo.com">Click here to check out my podcast, How to Change the World. </a></p>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="slider--item slider--item-right">
|
||||
<a href="https://nostree.me/npub1ajt9gp0prf4xrp4j07j9rghlcyukahncs0fw5ywr977jccued9nqrcc0cs">
|
||||
<div class="slider--item-image">
|
||||
|
@ -346,18 +347,18 @@
|
|||
<div class="work-request--information">
|
||||
|
||||
<div class="information-name">
|
||||
<input id="name" name="name" type="text" required>
|
||||
<input id="name" name="name" type="text" autocomplete="your name" required>
|
||||
<label for="name">Name</label>
|
||||
</div>
|
||||
|
||||
<div class="information-email">
|
||||
<input id="email" type="email" name="email" required>
|
||||
<input id="email" type="email" name="email" autocomplete="your email" required>
|
||||
<label for="email">Email</label>
|
||||
|
||||
</div>
|
||||
<div class="information-message">
|
||||
|
||||
<input name="message" type="text" required></input>
|
||||
<input id="message" name="message" type="text" autocomplete="short message"></input>
|
||||
<label for="message">Message</label>
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue