Skip to content

Instantly share code, notes, and snippets.

@adarsh-gupta101
Created May 13, 2025 14:44
Show Gist options
  • Save adarsh-gupta101/362f8425ade7da1106d0a3bf213ef39f to your computer and use it in GitHub Desktop.
Save adarsh-gupta101/362f8425ade7da1106d0a3bf213ef39f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation</title>
<!-- foundation CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.6.3/css/foundation.min.css"
/>
</head>
<body>
<div class="grid-container shadow border-1">
<div class="grid-x grid-padding-x">
<div class="medium-6 medium-offset-3 cell">
<img
src="https://img.freepik.com/free-vector/tablet-login-concept-illustration_114360-7863.jpg?w=300"
alt="My Image"
/>
<form>
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div class="medium-12 cell">
<label
>First Name
<input type="text" placeholder="John" />
</label>
</div>
<div class="medium-12 cell">
<label
>Last Name
<input type="text" placeholder="Doe" />
</label>
</div>
<div class="medium-12 cell">
<label
>Email
<input type="email" placeholder="[email protected]" />
</label>
</div>
<div class="medium-6 cell">
<label
>Gender
<select>
<option value="">Select gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="non-binary">Non-binary</option>
<option value="other">Other</option>
</select>
</label>
</div>
<div class="medium-12 cell">
<label
>Password
<input type="password" placeholder="Password" />
</label>
</div>
<div class="medium-12 cell">
<input class="button success" type="submit" value="Sign Up" />
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment