Skip to content
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

Make html skeleton static #5

Merged
merged 2 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# api-project--egbie-ollie
# api-project--egbie-ollie

## In progress


### Our site
### https://fac30.github.io/api-project--egbie-ollie/
150 changes: 116 additions & 34 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,117 @@
<!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="static/css/styles.css">
<script src="static/scripts/script.js" defer></script>
<title>Clever name</title>
</head>
<body>
<main>
<section id="movie-content">
<div class="container">
<h1>Clever name</h1>
<input type="text" id="search">
<button id="submit" type="submit">Submit</button>
<div class="flex">
<div class="picture">
<img src="static\image\dog-placeholder.jpg" alt="" srcset="" class="main-picture">
</div>
<div class="side-pictures">

</div>
<div class="text-content">
<p id="description"></p>
<p id="joke"></p>
<p id="cast"></p>
<p id="runtime"></p>
</div>
</div>
</div>
</section>
</main>
</body>
<!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="static/css/styles.css">
<script src="static/js/script.js" defer></script>
<title>Clever name</title>
</head>
<body>

<nav class="container">
<div class="nav-head flex-center padding-top-sm padding-bottom-sm">
<div class="logo">
logo
</div>

<div class="header-body anton-regular text-upper font-md">
some clever name here
</div>

<div class="header-footer">
<img src="static/image/alternate-sign-in.svg" alt="A login image" class="icon">
<span>login</span>
</div>
</div>

<div class="nav-body flex-center padding-top-sm padding-bottom-sm berkshire-swash-regular font-md">
<a href="#" class="nav-link">Films</a>
<a href="#" class="nav-link">Venues</a>
<a href="#" class="nav-link">Events</a>
<a href="#" class="nav-link">Membership</a>
<a href="#" class="nav-link">Gifts</a>
<a href="#" class="nav-link">Private hire</a>

</div>

</nav>

<!-- The main section starts here -->
<main>

<section id="movie-content">

<div class="container">

<div class="search">
<input type="search" name="search" id="search" class="search__bar margin-top-sm">
<button type="submit" class="search-btn">Search</button>
</div>







</div>


</section>


</main>
<!-- The mains end here -->

<footer>

<div class="container padding-top-lg padding-bottom-lg">

<div class="flex-space-between">

<div class="subscription flex-col">
<h1 class="anton-regular white-text berkshire-swash-regular">Some clever name here</h1>
<p class="subtitle white-text padding-top-md">Sign up to our newsletter for special bribes, incentives and Everyman listings each week.</p>
<button type="button" class="text-upper button-sm margin-top-sm">Join for free</button>
</div>

<div class="links flex-col">
<a href="#">Movies Films and Downloads</a>
<a href="#">Careers</a>
<a href="#">About some site name here</a>
<a href="#">FAQs</a>
<a href="#">Contact us</a>
<a href="#">Privacy settings</a>
</div>


<div class="socials">

<div class="social-icons padding-top-sm">
<img src="static/image/instagram.svg" alt="" srcset="" class="icon">
<img src="static/image/facebook (1).svg" alt="" class="icon">
<img src="static/image/whatsapp.svg" alt="" class="icon">
<img src="static/image/twitter-original (1).svg" alt="" class="icon">

</div>
</div>

</div>


</div>
<div class="policies padding-top-xsm padding-bottom-xsm">
<div class="policies__wrapper">
<a href="#">© Privacy Policy</a>
<a href="#">© Terms and Conditions</a>
<a href="#">Cookie Policy</a>
</div>

</div>


</footer>

</body>
</html>
Loading