Introduction to EagleUI
Eagle UI is the UI farmework. which help to build product experiences at Segment. Eagle UI helps you to build your Project quickly.

Installation
Copy-paste the stylesheet <link> into your <head> element before all other stylesheets to load our CSS.
                    
https://eagleui.netlify.app/css/component.css 
                    
                

Starter Template
The following starter template uses the latest development standards. It used HTML5 doctype and also viewport metatag. Putting it all together the page will look like...
                        
                            
<html lang="en">
<head>
<!-- required metatags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- EagleUI Stylesheet -->
<link rel="stylesheet" href="https://eagleui.netlify.app/css/component.css">

<title>Title</title>
</head>
<body>
<h1>EagleUI</h1>
</body>
</html>