Portfolio
The Code
Here is a snippet of code that goes into this Fashion Stylist app!
The Result
<header>
<h1>Fashion Stylist</h1>
<nav>
<a href=”#home”>Home</a>
<a href=”#services”>Services</a>
<a href=”#stylists”>Stylists</a>
<a href=”#contact”>Contact</a>
</nav>
</header>
<section id=”home” class=”hero”>
<h2>Your Personal Stylist Online</h2>
<p>Find your style and boost your confidence.</p>
<button onclick=”startQuiz()”>Take Style Quiz</button>
</section>
<section id=”services”>
<h2>Our Services</h2>
<div class=”cards”>
<div class=”card”>
<h3>Personal Styling</h3>
<p>Get one-on-one fashion advice.</p>
</div>
<div class=”card”>
<h3>Outfit Ideas</h3>
<p>Customized looks just for you.</p>
</div>
<div class=”card”>
<h3>Lookbooks</h3>
<p>Stay updated with trends.</p>
</div>
</div>
</section>