Know how technology ineract with man

we depend in technology or technology depend on us?.

Search This Blog

Friday, 29 December 2017

how to mix php in html

When I use iframe in HTML file that linked to test.php .. the result is OK Test.php : <?php $host = "localhost"; $user = "user"; $pass = "pass"; $database = "db"; $koneksi = mysql_connect ($host,$user,$pass); mysql_select_db($database,$koneksi) or die ("error"); $result = mysql_query("SELECT * FROM pengumuman"); $i = 0; while($row = mysql_fetch_array($result)) { echo "<li><a href='#'>".$row['judul']."</a></li>"; $i++; } mysql_close($koneksi); ?> But I...

Thursday, 28 December 2017

cool html tricks anyone can apply on website

1. Parallax Effect You have probably seen the Parallax Effect in fancy-magazine-style online articles. As you scroll down a feature article, the background image appears to scroll at a different pace. As you enter a different section of the article, the background image changes. It’s a cool effect that adds visual depth to the content.How to Create a Parallax Desktop Background With Rainmeter How to Create a Parallax Desktop Background...

Monday, 25 December 2017

HTML ELEMENT

An HTML element usually consists of a start tag and end tag, with the content inserted in between: <tagname>Content goes here...</tagname> The HTML element is everything from the start tag to the end tag: <p>My first paragraph.</p> Start tag Element content End tag <h1> My First Heading </h1> <p> My first paragraph. </p> <br> HTML elements with no content are called empty elements. Empty...

HTML BASICS YOU SHOULD KNOW

HTML Documents All HTML documents must start with a document type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body> Example <!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> HTML Headings HTML headings...

HTML EDITING PROGRAMS

Write HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac). We believe using a simple text editor is a good way to learn HTML. Follow the four steps below to create your first web page with Notepad or TextEdit. Step 1: Open Notepad (PC) Windows 8 or later: Open the Start Screen (the window symbol...

TOP PHP PROJECTS FOR BEGINERS

Here is a list of project ideas for PHP beginners. Learning a programming language can sometimes be a little tricky, having a project helps you to structure your learning and get extra motivation. To-do list. Make a simple web app where you could add, mark as completed and delete to-do items. CMS (content management system) for a blog or portfolio (a.k.a very very basic version of WordPress). Create a simple login/registration system, ability to...

website/blog responsiveness

What is Responsive Web Design? Responsive Web Design makes your web page look good on all devices (desktops, tablets, and phones). Responsive Web Design is about using HTML and CSS to resize, hide, shrink, enlarge, or move the content to make it look good on any screen: Setting The Viewport When making responsive web pages, add the following <meta> element in all your web pages: Example <meta name="viewport" content="width=device-width,...