Display a URL Input Field



max 100 auto
max 40 auto

| Hem | Blogg2 | Test | Test2| Test3| Nyheter | Ställplatser | Ved | BEntreprenad | Loppmarknad | Om | Kontakt | Test4

Nyheter - TEST-sida

Östra Stärkelsefabrik i Blaklycke läggs ned

Blaklyckes och en av Torhamns sockens största arbetsplatser läggs ned. Efter närmare 60 år stängs fabriken senast 1 december 2022.
Personalen har kvar sina arbeten fram till sista november 2022. Kampanjen 2021 körs som vanligt. Styrelsen kommer senare fatta beslut om kampanjen 2021 blir den sista eller om även 2022 ska köras i Östra Stärkelsefabrik. När väl stängningen är gjord ska potatisen från den Östra kretsen transporteras till fabriken i Mjällby. Odlarna kommer att få kompensation för de extra transportkostnaderna.
Stärkelseföreningen Sveriges stärkelseproducenter har investerat i nya produktlinjer i fabrikerna Lister i Mjällby utanför Sölvesborg och Nöbbelöv utanför Kristianstad. Dessa produkter, som till exempel utvinning av protein, kan inte tas fram i Blaklycke. Föreningen tror också att de nya produkterna framöver kommer att stå för en större andel av intäkterna från potatisen än vad stärkelseutvinningen gör i dag. Samtidigt menar man att Blaklycke-fabriken hade stått inför stora investeringsbehov. Föreningen räknar med att spara tio miljoner kronor per kampanj på nedläggningen, ökade transportkostnader medräknat.
Beslutet om stängningen togs 20 april 2021.
Stärkelsefabriker har i närområdet tidigare funnits på flera platser, bland annat Gisslevik, Jämjö och Lyckeby innan fabriken i Blaklycke byggdes på en åker 1963.
Östra Stärkelsefabrik tillkom efter anmodan från Statens jordbruksnämnd som ville ha centralisering och storskalighet. Östra Stärkelsefabrik ersatte fabrikerna i Möljeryd, Leråkra, Nättraby, Lyckeby, Säby, Jämjö, Gisslevik, Brömsebro och Torsdala.
I modern tid har den nuvarande stärkelse-föreningen även haft en fabrik i Villand i Bäckaskog men den lades ned 2009. Där finns nu utsädescentralen kvar även om själva fabriken inte är riven. Efter nedläggningen av Östra återstår Lister och Nöbbelöv, förutom egna anläggningar utomlands. Framtidsplaner för Lyckeby-stärkelsen Lyckeby investerar i Lister

TEST

Hello World

Hello World

Hello World

W3Schools Demo

Resize this responsive page!

London

London is the capital city of England.

It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.

Paris

Paris is the capital of France.

The Paris area is one of the largest population centers in Europe, with more than 12 million inhabitants.

Tokyo

Tokyo is the capital of Japan.

It is the center of the Greater Tokyo Area, and the most populous metropolitan area in the world.


Responsive Web Page - Full Example TEST

A responsive web page should look good on large desktop screens and on small mobile phones.

A0
A1
1
A2
2
A3
3

Try it Yourself »


Responsive Web Design - Frameworks

All popular CSS Frameworks offer responsive design.

They are free, and easy to use.

W3.CSS

W3.CSS is a modern CSS framework with support for desktop, tablet, and mobile design by default.

W3.CSS is smaller and faster than similar CSS frameworks.

W3.CSS is designed to be a high quality alternative to Bootstrap.

W3.CSS is designed to be independent of jQuery or any other JavaScript library.

W3.CSS Demo

Resize the page to see the responsiveness!

London

London is the capital city of England.

It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.

Paris

Paris is the capital of France.

The Paris area is one of the largest population centers in Europe, with more than 12 million inhabitants.

Tokyo

Tokyo is the capital of Japan.

It is the center of the Greater Tokyo Area, and the most populous metropolitan area in the world.

Example

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>

<div class="w3-container w3-green">
  <h1>W3Schools Demo</h1>
  <p>Resize this responsive page!</p>
</div>

<div class="w3-row-padding">
  <div class="w3-third">
    <h2>London</h2>
    <p>London is the capital city of England.</p>
    <p>It is the most populous city in the United Kingdom,
    with a metropolitan area of over 13 million inhabitants.</p>
  </div>

  <div class="w3-third">
    <h2>Paris</h2>
    <p>Paris is the capital of France.</p>
    <p>The Paris area is one of the largest population centers in Europe,
    with more than 12 million inhabitants.</p>
  </div>

  <div class="w3-third">
    <h2>Tokyo</h2>
    <p>Tokyo is the capital of Japan.</p>
    <p>It is the center of the Greater Tokyo Area,
    and the most populous metropolitan area in the world.</p>
  </div>
</div>

</body>
</html>
Try it Yourself »

To learn more about W3.CSS, read our W3.CSS Tutorial.


Bootstrap

Another popular CSS framework is Bootstrap. Bootstrap uses HTML, CSS and jQuery to make responsive web pages.

Example

<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <div class="jumbotron">
    <h1>My First Bootstrap Page</h1>
  </div>
  <div class="row">
    <div class="col-sm-4">
      ...
    </div>
    <div class="col-sm-4">
      ...
    </div>
    <div class="col-sm-4">
    ...
    </div>
  </div>
</div>

</body>
</html>
Try it Yourself »

To learn more about Bootstrap, go to our Bootstrap Tutorial.


❮ Previous Next ❯