Changed around line 1
- theme roboto
+ title Start
- Hello World my name is
+ css
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ }
+ body {
+ min-height: 100vh;
+ background: linear-gradient(45deg, #1a1a2e, #16213e, #1a1a2e);
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ color: #fff;
+ }
+ .container {
+ text-align: center;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 20px;
+ backdrop-filter: blur(10px);
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
+ }
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, #e94560, #533483);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
+ }
+ .search-box {
+ margin: 2rem 0;
+ }
+ input {
+ width: 400px;
+ max-width: 90vw;
+ padding: 1rem 1.5rem;
+ border: none;
+ border-radius: 50px;
+ background: rgba(255, 255, 255, 0.9);
+ font-size: 1.1rem;
+ outline: none;
+ transition: all 0.3s ease;
+ }
+ input:focus {
+ box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
+ transform: scale(1.02);
+ }
+ .quick-links {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
+ gap: 1rem;
+ margin-top: 2rem;
+ max-width: 600px;
+ }
+ .link {
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 10px;
+ text-decoration: none;
+ color: white;
+ transition: all 0.3s ease;
+ }
+ .link:hover {
+ background: rgba(255, 255, 255, 0.2);
+ transform: translateY(-3px);
+ }
+ .time {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ font-weight: 300;
+ }
+ html
+
+
Welcome
+
+
+ onkeypress="if(event.keyCode==13) window.location.href='https://www.google.com/search?q='+this.value">
+
+
+ script
+ function updateClock() {
+ const now = new Date();
+ const time = now.toLocaleTimeString();
+ document.getElementById('clock').textContent = time;
+ }
+ setInterval(updateClock, 1000);
+ updateClock();